-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "base1",
"version": "3.0.0",
"description": "Convert binary data to Base1",
"homepage": "https://github.com/qntm/base1",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base1.git"
},
"type": "module",
"main": "src/index.js",
"keywords": [
"base64",
"encoding",
"decoding",
"text",
"useless",
"inefficient",
"A"
],
"scripts": {
"unit": "node --test --experimental-test-coverage --test-coverage-functions=100 --test-coverage-lines=100 --test-coverage-branches=100",
"standard": "standard",
"tag": "node -e \"require('child_process').spawn('git', ['tag', `v${require('./package.json').version}`], { stdio: 'inherit' })\"",
"tag-and-publish": "npm run tag && git push --tags && npm publish && npm version patch --no-git-tag-version && git add . && git commit -m \"Bump patch\" && git push",
"test": "npm run standard && npm run unit"
},
"author": "qntm",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"standard": "^17.0.0"
},
"files": [
"src"
]
}