-
Notifications
You must be signed in to change notification settings - Fork 5
/
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": "auto-updater",
"version": "0.1.0",
"description": "Operations contracts for parity's auto-updater.",
"author": "Parity Technologies <[email protected]>",
"homepage": "https://github.com/parity-contracts/auto-updater",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/parity-contracts/auto-updater.git"
},
"bugs": {
"url": "https://github.com/parity-contracts/auto-updater/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",
"ethereumjs-abi": "^0.6.5",
"ganache-cli": "^6.1.0",
"mocha-steps": "^1.1.0",
"solidity-coverage": "^0.4.15",
"solium": "^1.1.6",
"truffle": "^4.1.5"
}
}