This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.59 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
56
{
"name": "blockstack-trezor",
"version": "0.10.0",
"description": "Simple utility for Blockstack trezor transactions",
"main": "lib/index",
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"build": "rm -rf lib; babel src -d lib",
"browserify": "browserify lib/index.js --standalone bsk-trezor -o dist/blockstack-trezor.js",
"build-tests": "rm -rf tests/lib; babel tests/src -d tests/lib && browserify tests/lib/units.js -o tests/dist/units.js",
"karma": "npm run build && npm run build-tests && karma start --single-run",
"flow": "flow",
"lint": "eslint src/",
"test": "npm run lint && npm run flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/blockstack-trezor-signer.git"
},
"author": {
"name": "Blockstack PBC",
"email": "[email protected]",
"url": "https://blockstack.org"
},
"contributors": [
{
"name": "Aaron Blankstein"
}
],
"license": "MIT",
"dependencies": {
"@trezor/connect-web": "^9.0.0",
"babel-polyfill": "^6.26.0",
"bigi": "^1.4.2",
"bitcoinjs-lib": "^4.0.2",
"blockstack": "^18.1.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"browserify": "^16.2.2",
"eslint": "^5.6.1",
"eslint-plugin-flowtype": "^2.50.3",
"fetch-mock": "^7.0.7",
"flow-bin": "^0.82.0",
"jasmine": "^3.2.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2"
},
"engines": {
"node": ">=8"
}
}