-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.11 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
39
40
41
42
{
"name": "base32768",
"version": "4.0.0",
"description": "Binary-to-text encoding highly optimised for UTF-16",
"homepage": "https://github.com/qntm/base32768",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base32768.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": [
"base64",
"base32768",
"encoding",
"unicode",
"text",
"decoding",
"efficient"
],
"author": "qntm",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"glob": "^10.2.2",
"mocha": "^10.0.0",
"safe-code-point": "^3.0.1",
"standard": "^17.0.0"
},
"files": [
"src",
"typings"
]
}