forked from CoinAlpha/basket-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
{
"private": true,
"name": "basket-protocol",
"version": "0.0.0",
"description": "MVP smart contract for use with the demo app",
"main": "truffle.js",
"scripts": {
"test": "rm -rf build && truffle compile && truffle test",
"coverage": "TEST_COVERAGE=true npm run sol-cov:local",
"coverage:prod": "TEST_COVERAGE=true npm run sol-cov:coveralls",
"sol-cov:coveralls": "rm -rf build && ./node_modules/.bin/solidity-coverage && cat coverage/lcov.info | coveralls",
"sol-cov:local": "rm -rf build && ./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoinAlpha/basket-protocol.git"
},
"author": "CoinAlpha, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CoinAlpha/basket-protocol/issues"
},
"homepage": "https://github.com/CoinAlpha/basket-protocol#readme",
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.6.1",
"solidity-coverage": "^0.5.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"numeral": "^2.0.6",
"web3": "0.20"
}
}