-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"bootstrap": "rm -rf node_modules && npm cache clean --force && npm i --save-dev yarn && yarn && if [ ! -f \"config/secrets.json\" ]; then touch config/secrets.json && echo '{}' > config/secrets.json; fi && npm i",
"lint": "solium --dir ./contracts",
"test:prep": "npm run lint && npm run ganache-cli:dev",
"test": "npm run test:prep && truffle test --network rpc",
"test:gas": "GAS_REPORTER=true npm run test",
"ganache-cli:dev": "scripts/ganache-cli.sh",
"ganache-cli:coverage": "SOLIDITY_COVERAGE=true scripts/ganache-cli.sh",
"cover": "npm run lint && npm run ganache-cli:coverage && ./node_modules/.bin/solidity-coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"bluebird": "^3.5.1",
"checksum": "^0.1.1",
"eth-gas-reporter": "^0.1.1",
"ether-pudding": "^3.2.0",
"ganache-cli": "^6.0.3",
"glob": "^7.1.2",
"jsonfile": "^4.0.0",
"mkdirp": "^0.5.1",
"npm-install-version": "^6.0.2",
"solc": "^0.4.19",
"solidity-coverage": "^0.4.9",
"solium": "^1.1.3",
"truffle": "^4.0.6",
"truffle-artifactor": "^3.0.3",
"truffle-config": "^1.0.4",
"truffle-contract": "^3.0.3",
"truffle-hdwallet-provider": "0.0.3",
"web3": "0.20.4",
"yarn": "^1.5.1"
},
"dependencies": {
"colors": "^1.1.2",
"zeppelin-solidity": "1.6.0"
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": ""
}