-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.09 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.09 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
33
34
{
"name": "proven",
"version": "0.1.0",
"private": true,
"description": "Proven Suite",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.13.0",
"mkdirp": "^0.5.1",
"sol-merger": "^0.1.2",
"solc": "^0.4.24",
"solidity-coverage": "^0.5.5",
"solium": "^1.1.8",
"truffle": "^4.1.13"
},
"license": "AGPL-3.0",
"scripts": {
"build": "./node_modules/.bin/truffle compile",
"build-contracts": "mkdir -p ./build/merged ; ./node_modules/.bin/sol-merger './contracts/*.sol' ./build/merged",
"coverage": "./node_modules/.bin/solidity-coverage",
"deploy-ropsten": "./node_modules/.bin/truffle migrate --network ropsten",
"deploy-ganache": "./node_modules/.bin/truffle migrate --network ganache",
"lint": "./node_modules/.bin/eslint .",
"solium": "./node_modules/.bin/solium --dir contracts/",
"test": "./node_modules/.bin/truffle test"
},
"dependencies": {
"babel-register": "^6.26.0",
"web3": "^1.0.0-beta2"
}
}