-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
46 lines (46 loc) · 1.33 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
43
44
45
46
{
"name": "base65536",
"version": "4.0.4",
"description": "Unicode's answer to Base64",
"homepage": "https://github.com/qntm/base65536",
"repository": {
"type": "git",
"url": "git://github.com/qntm/base65536.git"
},
"type": "module",
"main": "src/index.js",
"types": "typings/index.d.ts",
"scripts": {
"cypress": "start-server-and-test \"node server/server.js\" http://localhost:3000/server/index.html \"cypress run\"",
"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 && npm run cypress"
},
"keywords": [
"base64",
"encoding",
"unicode",
"text",
"decoding",
"binary"
],
"author": "qntm",
"license": "MIT",
"devDependencies": {
"base65536-test": "^1.1.2",
"c8": "^10.1.2",
"cypress": "^13.1.0",
"express": "^4.17.1",
"glob": "^10.2.2",
"mocha": "^10.2.0",
"safe-code-point": "^3.0.2",
"standard": "^17.0.0",
"start-server-and-test": "^2.0.0"
},
"files": [
"src",
"typings"
]
}