-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.28 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": "augur-dispute-crowdsourcer",
"version": "0.1.0",
"description": "Allows people to prepare funds for dispute round, so that just one transaction is needed to contribute into actual Augur contract.",
"main": "index.js",
"author": "Daniil Burdakov <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"eth-hd-wallet": "^0.4.0",
"expect": "^23.6.0",
"immutable": "^3.8.2",
"invariant": "^2.2.4",
"openzeppelin-solidity": "^2.0.0",
"prando": "^4.0.0",
"prettier": "^1.14.3",
"prettier-plugin-solidity": "^1.0.0-alpha.10",
"solhint": "^1.4.0",
"solidity-coverage": "^0.5.11",
"truffle": "4.1.14",
"truffle-flattener": "^1.2.9",
"truffle-hdwallet-provider": "^0.0.6",
"truffle-hdwallet-provider-privkey": "^0.3.0",
"web3": "1.0.0-beta.36",
"web3-provider-engine": "^14.1.0"
},
"dependencies": {},
"scripts": {
"test": "truffle test",
"prettier_apply": "prettier --write \"contracts/**/*.sol\"",
"lint_solhint": "solhint \"contracts/**/*.sol\"",
"lint_prettier": "prettier --list-different \"contracts/**/*.sol\"",
"lint": "yarn lint_solhint && yarn lint_prettier"
}
}