-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.51 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "scrypt-interactive",
"version": "0.1.0",
"description": "Interactive Scrypt computation verification",
"main": "client/cli.js",
"bin": {
"bridge": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"ganache": "bnr ganache",
"parity": "bnr parity",
"geth": "bnr geth",
"migrate:dev": "bnr migrate:dev",
"migrate:rinkeby": "bnr migrate:rinkeby",
"migrate:ropsten": "bnr migrate:ropsten",
"monitor": "bnr monitor",
"lint": "eslint .",
"test": "bnr test",
"test:geth": "bnr test:geth"
},
"betterScripts": {
"ganache": "./bin/ganache.sh",
"parity": "parity --config config.toml --geth",
"geth": "geth --dev --dev.period 0 --rpc --targetgaslimit 8000000",
"migrate:dev": "truffle migrate --network ganache",
"migrate:rinkeby": {
"command": "truffle migrate --network infura",
"env": {
"INFURA_CHAIN": "rinkeby"
}
},
"migrate:ropsten": {
"command": "truffle migrate --network infura",
"env": {
"INFURA_CHAIN": "ropsten"
}
},
"monitor": "node cli.js monitor",
"test": {
"command": "truffle test",
"env": {
"NODE_ENV": "test"
}
},
"test:geth": {
"command": "bnr test --network geth",
"env": {
"IS_GETH_TEST": "true",
"PERIOD": "1"
}
}
},
"author": "chriseth",
"license": "MIT",
"dependencies": {
"better-npm-run": "^0.1.0",
"bignumber.js": "^5.0.0",
"commander": "^2.13.0",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"ethrpc": "^4.5.7",
"javascript-state-machine": "^3.0.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"scryptsy": "^2.0.0",
"sequelize": "^4.32.2",
"sequelize-cli": "^3.2.0",
"truffle-contract": "^3.0.2",
"truffle-hdwallet-provider": "0.0.3",
"truffle-resolver": "^4.0.1",
"web3": "^0.19.0",
"zeppelin-solidity": "^1.5.0"
},
"devDependencies": {
"better-npm-run": "^0.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"colors": "^1.1.2",
"eslint": "^4.14.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc": "^6.0.3",
"ganache-cli": "^6.0.3",
"mocha": "^5.0.0",
"semistandard": "^8.0.0",
"solc": "^0.4.19",
"tape": "^4.5.1",
"tape-spawn": "^1.4.2",
"truffle": "^4.0.5"
}
}