-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.48 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
47
48
49
50
51
52
{
"name": "@abckey/protocol",
"version": "0.0.2",
"description": "ABCKEY And TREZOR Protocol",
"author": "abckey <hi@abckey.com>",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"abckey",
"trezor",
"protocol"
],
"scripts": {
"git": "npx git-cz@4.5.0",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"npm:check": "npx npm-check -u",
"tsc:watch": "tsc --watch --noEmit",
"build:53c1": "pbjs -t json --keep-case proto/0x53c1/*.proto > ts/0x53c1.json",
"build:abc1": "pbjs -t json --keep-case proto/0xabc1/*.proto > ts/0xabc1.json",
"build:ts": "tsc -d",
"build": "npx rimraf dist && npm run build:ts && npm run build:53c1 && npm run build:abc1",
"build:docs": "npx typedoc src --out docs --mode file",
"test": "npm run build && ava -v",
"test:protobuf": "ava -v -m protobuf*",
"test:Messages": "ava -v -m Messages*",
"prepare": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/abcKey/abckey-protocol.git"
},
"devDependencies": {
"@types/node": "^14.0.10",
"ava": "^3.7.0",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"protobufjs": "^6.9.0"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}