-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 1.03 KB
/
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
{
"name": "base2048",
"version": "2.0.3",
"description": "Binary encoding optimised for Twitter",
"homepage": "https://github.com/qntm/base2048",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base2048.git"
},
"type": "module",
"main": "src/index.js",
"types": "typings/index.d.ts",
"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"
},
"keywords": [
"encoding",
"binary",
"twitter",
"unicode"
],
"author": "qntm",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"mocha": "^10.0.0",
"safe-code-point": "^3.0.0",
"standard": "^17.0.0"
},
"files": [
"src",
"typings"
]
}