-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1017 Bytes
/
package.json
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
38
39
{
"name": "base1",
"version": "2.0.3",
"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": {
"mocha": "c8 --100 mocha",
"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 mocha"
},
"author": "qntm",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"c8": "^10.1.2",
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"files": [
"src"
]
}