forked from trezor/trezor.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.07 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.07 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "trezor.js",
"version": "8.1.0",
"author": "TREZOR <info@trezor.io>",
"homepage": "https://github.com/trezor/trezor.js",
"description": "High-level Javascript API for Bitcoin Trezor",
"license": "LGPL-3.0",
"scripts": {
"lint": "eslint ./",
"flow": "flow ./src"
},
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor.js.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor.js/issues"
},
"keywords": [
"trezor",
"bitcoin",
"wallet"
],
"browser": "lib/index-browser.js",
"main": "lib/index-node.js",
"babel": {
"presets": [
"env"
],
"plugins": [
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true,
"moduleName": "babel-runtime"
}
],
"transform-es2015-template-literals",
"transform-flow-strip-types",
"transform-decorators-legacy",
"transform-object-rest-spread",
"transform-class-properties",
"add-module-exports"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"bump-version": "^0.5.0",
"eslint": "^4.4.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "0.45.0"
},
"dependencies": {
"bchaddrjs": "^0.2.1",
"bitcoinjs-lib-zcash": "git+https://github.com/wliyongfeng/bitcoinjs-lib-zcash.git#electron",
"ecurve": "^1.0.2",
"node-fetch": "^1.6.0",
"randombytes": "^2.0.1",
"semver-compare": "1.0.0",
"trezor-link": "1.7.2",
"unorm": "^1.3.3",
"whatwg-fetch": "0.11.0"
},
"engines": {
"node": ">=6.0.0"
}
}