-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "ewc-system-contracts",
"version": "1.1.0",
"description": "EWF's EWC system contracts",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/energywebfoundation/ewc-system-contracts.git"
},
"keywords": [
"ewf",
"energyweb",
"system",
"contracts",
"ewc"
],
"author": "Adam Nagy <adam.nagy@energyweb.org>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/energywebfoundation/ewc-system-contracts/issues"
},
"homepage": "https://github.com/energywebfoundation/ewc-system-contracts#readme",
"scripts": {
"test": "scripts/test.sh",
"compile": "npx truffle compile",
"migrate": "npx truffle migrate",
"coverage": "npx solidity-coverage",
"coverage_publish": "scripts/coveralls.sh",
"lint:solium": "npx solium -d contracts/",
"lint:solium:fix": "npx solium -d contracts/ --fix",
"lint:solhint": "npx solhint \"contracts/**/*.sol\"",
"ganache": "npx ganache-cli --port 8545",
"verify": "npx truffle run verify --all",
"security": "slither . --config-file .slither.conf.json"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-bn": "0.1.1",
"coveralls": "^3.0.3",
"csv-parser": "2.3.0",
"ethlint": "1.2.4",
"ganache-cli": "6.4.3",
"solhint": "1.5.1",
"solidity-coverage": "0.6.0-beta.5",
"solium-plugin-zeppelin": "0.0.2",
"truffle": "5.0.21",
"truffle-security": "^1.5.0",
"web3": "1.0.0-beta.37"
},
"dependencies": {}
}