-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.51 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
53
54
55
{
"name": "@abckey/webusb",
"version": "0.3.6",
"description": "Communicate with ABCKEY Hardware Wallets.",
"author": "abckey <hi@abckey.com>",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"abckey",
"trezor",
"webusb"
],
"repository": {
"type": "git",
"url": "https://github.com/abclib/abckey-webusb.git"
},
"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": "npx rimraf dist && tsc -d",
"build:docs": "npx typedoc src --out docs --mode file",
"test": "npm run build && ava -v",
"test:utils": "npm run build && ava -v -m utils*",
"test:index": "npm run build && npx browserify -r ./dist/index.js:abckey > ./dist/browserify_index.js && node test/server",
"prepare": "npm run test"
},
"devDependencies": {
"@types/node": "^14.0.5",
"ava": "^3.8.2",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"express": "^4.17.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"@abckey/protocol": "^0.0.2",
"@types/w3c-web-usb": "^1.0.4",
"bip32": "^2.0.5",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^6.2.0",
"protobufjs": "^6.9.0"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}