-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "@aragon/court",
"version": "1.1.3",
"description": "Aragon Court",
"author": "Aragon Association",
"license": "GPL-3.0",
"files": [
"/abi",
"/build",
"/contracts"
],
"scripts": {
"compile": "truffle compile",
"lint": "npm run lint:solidity && npm run lint:js",
"lint:js": "eslint ./test ./scripts ./migrations",
"lint:solidity": "solium --dir ./contracts",
"test": "npm run ganache-cli:test",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"pre-push": [
"lint"
],
"dependencies": {},
"devDependencies": {
"@aragon/test-helpers": "^2.1.0",
"@aragon/truffle-config-v5": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unused-imports": "^0.1.0",
"eth-gas-reporter": "^0.2.9",
"ganache-cli": "^6.9.0",
"pre-push": "^0.1.1",
"solidity-coverage": "0.5.8",
"solium": "^1.2.3",
"truffle": "^5.0.34",
"truffle-extract": "^1.2.1",
"web3": "^1.2.1",
"web3-eth-abi": "1.0.0-beta.33"
}
}