-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.83 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.83 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
{
"name": "identity-server-js",
"version": "0.0.16",
"description": "Masterwallet - Identity Server (NodeJS)",
"main": "server.js",
"scripts": {
"test:min": "mocha -w --reporter=min --timeout=20000 network/**/*.test.js api/*.test.js",
"test:eos": "mocha -w --timeout=20000 network/eos/*.test.js",
"test:eth": "mocha -w --timeout=20000 network/eth/*.test.js",
"test:btc": "mocha -w --timeout=20000 network/btc/*.test.js",
"test:electron": "mocha -w --timeout=20000 ipc/app.test.js",
"test": "mocha -w --timeout=20000 network/**/*.test.js api/*.test.js",
"start": "cross-env DEBUG=*,-follow-redirects nodemon server.js --cors",
"all": "npm-run-all --parallel start test",
"start:eth:testrpc": "ganache-cli -l 1999999 | grep -v getFilterChanges",
"start:eth:etherscan": "cd ../etherscan-server && wait-on tcp:8545 && npm run start",
"delay": "npm-delay 2000",
"start:eth": "npm-run-all --parallel start:eth:testrpc start:eth:etherscan",
"start:eos": "nodeos -e -p eosio --contracts-console --http-server-address=\"0.0.0.0:8888\" --access-control-allow-origin \"*\" --access-control-allow-headers \"*\" --access-control-allow-credentials true --plugin eosio::history_api_plugin --plugin eosio::chain_api_plugin --http-validate-host=false --verbose-http-errors 2>&1 | grep -v produce_block",
"reset:eos": "rm -rf ~/.local/share/eosio/nodeos",
"electron": "node copy.electron.js --link",
"electron:hard": "node copy.electron.js"
},
"keywords": [],
"author": "Web Cerebrium <webcerebrium@gmail.com> (https://webcerebrium.com/)",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"bip32": "^0.1.0",
"bip38": "^2.0.2",
"bip39": "^2.5.0",
"bitcoinjs-lib": "^3.3.2",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"branca": "^0.2.0",
"bs58": "^4.0.1",
"chacha": "^2.1.0",
"commander": "^2.15.1",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"crypto-js": "^3.1.9-1",
"debug": "^3.1.0",
"electrum-client": "0.0.6",
"eosjs": "^15.0.6",
"eosjs-ecc": "^4.0.2",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.2.0",
"express": "^4.16.3",
"js-sha1": "^0.6.0",
"jssha": "^2.3.1",
"msgpack5": "^4.2.0",
"node-machine-id": "^1.1.10",
"path-to-regexp": "^2.4.0",
"pdfkit": "^0.8.3",
"qrcode": "^1.2.2",
"sjcl": "^1.0.7",
"string-pixel-width": "^1.7.0",
"uid-generator": "^1.0.0",
"wif": "^2.0.6"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"electron": "^2.0.8",
"electron-builder": "~20.28.4",
"ganache-cli": "^6.1.6",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"shelljs": "^0.8.2",
"spectron": "^4.0.0",
"wait-on": "^3.1.0",
"web3": "^0.20.1"
}
}