-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
31 lines (31 loc) · 955 Bytes
/
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
{
"name": "kovan-validator-set",
"version": "0.1.0",
"description": "",
"author": "Parity Technologies <[email protected]>",
"homepage": "https://github.com/parity-contracts/kovan-validator-set",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/parity-contracts/kovan-validator-set.git"
},
"bugs": {
"url": "https://github.com/parity-contracts/kovan-validator-set/issues"
},
"scripts": {
"compile": "npx truffle compile",
"migrate": "npx truffle migrate",
"test": "npx truffle test --network test",
"coverage": "npx solidity-coverage",
"lint": "npx solium -d contracts/",
"ganache": "npx ganache-cli --port 7545",
"parity": "parity --chain dev --jsonrpc-port 7545 --jsonrpc-apis all"
},
"devDependencies": {
"coveralls": "^3.0.0",
"ganache-cli": "^6.1.0",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.6",
"truffle": "^4.1.5"
}
}