forked from dydxprotocol/protocol_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@dydxprotocol/protocol",
"version": "0.1.2",
"description": "Ethereum Smart Contracts for the dYdX Margin Trading Protocol",
"main": "build/index.js",
"files": [
"build/",
"contracts/",
"truffle.js",
"LICENSE",
"README.md",
".babelrc"
],
"directories": {
"contracts": "contracts",
"migrations": "migrations",
"test": "test",
"util": "util"
},
"scripts": {
"test": "truffle test",
"compile": "truffle compile",
"migrate": "truffle migrate",
"develop": "truffle develop",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"solint": "solium -d contracts/",
"coverage": "./node_modules/.bin/solidity-coverage",
"deploycosts": "truffle test util/DeployGasCosts.js",
"node": "ganache-cli",
"debug": "truffle debug",
"dydxlint": "python util/lintcontracts.py && python util/linttests.py",
"build:js": "./node_modules/.bin/babel src --out-dir build/ --source-maps inline",
"prepublishOnly": "npm run compile -- --all && npm run build:js"
},
"repository": {
"type": "git",
"url": "https://github.com/dydxprotocol/protocol"
},
"keywords": [
"dydx",
"ethereum"
],
"author": "dYdX Trading Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dydxprotocol/protocol/issues"
},
"homepage": "https://github.com/dydxprotocol/protocol#readme",
"dependencies": {
"zeppelin-solidity": "1.10.0"
},
"devDependencies": {
"0x.js": "^0.37.2",
"@digix/tempo": "^0.2.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.26.0",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.1",
"es6-promisify": "^5.0.0",
"eslint": "^4.19.1",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "^6.1.0",
"mocha-junit-reporter": "^1.17.0",
"request-promise-native": "^1.0.5",
"solidity-coverage": "0.5.4",
"solium": "1.1.7",
"truffle": "4.1.11",
"web3": "1.0.0-beta.34"
}
}