-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.38 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "elastos-light-wallet",
"version": "v1.0.0-RC32",
"description": "elastos light wallet",
"productName": "Elastos Light Wallet",
"main": "index.js",
"build": {
"mac": {
"target": [
"dmg"
],
"hardenedRuntime": true
},
"linux": {
"target": [
"AppImage"
],
"category": "Utility"
}
},
"scripts": {
"eslint": "eslint --fix 'scripts/**/*.js'",
"eslint-lib": "eslint --fix 'libraries/**/*.js'",
"eslint-test": "eslint --fix 'test/**/*.js'",
"coverage": "nyc -x 'test/**' ./node_modules/mocha/bin/mocha --experimental-worker --recursive -t 100000 test",
"start": "electron . --enable-logging --remote-debugging-port=9222",
"test": "check-node-version --node 12 --npm 6 && ./node_modules/mocha/bin/mocha test",
"test-ledger": "check-node-version --node 12 --npm 6 && ./node_modules/mocha/bin/mocha --timeout 100000 ledger-test -g 'ledger'",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl",
"dist-mac": "electron-builder -m",
"dist-win": "electron-builder -w",
"dist-linux": "electron-builder -l",
"postinstall": "electron-builder install-app-deps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyber-republic/elastos-light-wallet.git"
},
"keywords": [
"elastos"
],
"author": "coranos",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyber-republic/elastos-light-wallet/issues"
},
"homepage": "https://github.com/cyber-republic/elastos-light-wallet#readme",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^5.13.1",
"babel-polyfill": "^6.26.0",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"bs58": "^4.0.1",
"check-node-version": "^4.0.3",
"elliptic": "^6.5.2",
"node": "v12.16.1",
"node-jsx": "^0.13.3",
"qrcode.react": "^1.0.0",
"react": "^16.13.1",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"ripemd160": "^2.0.2",
"rss-parser": "^3.7.6",
"smart-buffer": "^4.1.0",
"usb": "^1.6.3",
"wif": "^2.0.6"
},
"devDependencies": {
"chai": "^4.2.0",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^7.1.2",
"node-abi": "^2.16.0",
"nyc": "^15.0.1"
}
}