forked from openethereum/private-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "private-tx",
"version": "0.1.0",
"description": "Companion contract for Parity's Private Transactions feature",
"author": "Parity Technologies <[email protected]>",
"homepage": "https://github.com/parity-contracts/private-tx",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/parity-contracts/private-tx.git"
},
"bugs": {
"url": "https://github.com/parity-contracts/private-tx/issues"
},
"scripts": {
"ci": "npx concurrently \"npm run solium\" \"npm run truffle-with-rpc\" \"npm run solidity-coverage\"",
"ganache": "npx ganache-cli -p 8547",
"solidity-coverage": "npx solidity-coverage",
"solium": "npx solium --dir contracts/",
"test": "npm run solium && npm run truffle-with-rpc",
"truffle": "npx truffle test",
"truffle-with-rpc": "npx concurrently --success first --kill-others \"npm run ganache\" \"npm run truffle\""
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"concurrently": "^4.0.1",
"coveralls": "^3.0.0",
"ethereumjs-util": "^6.0.0",
"ganache-cli": "^6.1.0",
"mocha-steps": "^1.1.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.6",
"truffle": "^4.1.3"
}
}