-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "genesis-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"testrpc": "ganache-cli -p 8545 --networkId 15001 --mnemonic 'clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit 13000000",
"truffle": "truffle",
"truffle:test": "truffle test",
"truffle:compile": "truffle compile",
"truffle:migrate": "truffle migrate",
"test": "truffle test",
"test:ci": "bash scripts/run-test.sh",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/"
},
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.5",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"commander": "^3.0.1",
"nunjucks": "^3.2.0",
"openzeppelin-solidity": "2.2.0",
"solidity-rlp": "^2.0.0",
"truffle": "^5.0.34",
"web3": "^1.2.4",
"ganache-cli": "^6.8.0-istanbul.0"
}
}