-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "fundrequest-contracts",
"version": "2.0.0",
"description": "FundRequest Contracts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx truffle test",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "npx solidity-coverage",
"prepublishOnly": "truffle compile --all",
"build-contracts": "npx sol-merger './contracts/**/*.sol' ./build_merged",
"migrate": "npx truffle migrate",
"lint": "npx solium --dir ./contracts"
},
"author": "FundRequest",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dotenv": "^6.0.0",
"ganache-cli": "^6.1.6",
"eth-gas-reporter": "^0.1.9",
"decimal.js": "^10.0.1",
"mocha": "^5.1.1",
"sol-merger": "^0.1.2",
"solidity-coverage": "^0.5.5",
"solium": "^1.1.8",
"truffle": "^4.1.13",
"web3": "^1.0.0-beta.34",
"truffle-hdwallet-provider": "0.0.5",
"truffle-privatekey-provider": "0.1.0"
}
}