-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.01 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
{
"name": "ethCarInsurance",
"version": "1.0.0",
"repository": "git@github.com:validitylabs/ethCarInsurance.git",
"author": "Dr. Sebastian Buergel <sb@validitylabs.org>",
"license": "MIT",
"private": false,
"engines": {
"node": "^8.0.x"
},
"scripts": {
"start": "npm run testrpc",
"compile": "truffle compile --all",
"migrate": "truffle migrate --reset --network development",
"test": "truffle test --compile-all --network development",
"coverage": "solidity-coverage",
"clean": "rm -fr dist; rm -fr build; rm -fr bin",
"reset": "rm -fr node_modules; npm run clean",
"testrpc": "testrpc --gasPrice 1000000000 --network-id 1337 --mnemonic 'waste system voyage dentist fine donate purpose truly cactus chest coyote globe'"
},
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.1"
},
"devDependencies": {
"ethereumjs-testrpc": "^4.1.3",
"solc": "0.4.17",
"solidity-coverage": "^0.2.7",
"truffle": "^3.4.11"
}
}