forked from kleros/kleros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@kleros/kleros",
"version": "0.1.5",
"description": "Kleros core smart contracts.",
"keywords": [
"blockchain",
"smart-contracts",
"ethereum",
"arbitration",
"kleros"
],
"repository": "https://github.com/kleros/kleros",
"author": "Kleros",
"license": "MIT",
"private": false,
"scripts": {
"prettify": "kathari prettify",
"lint:sol": "kathari lint:sol",
"lint:js": "kathari lint:js",
"lint": "yarn run lint:sol && yarn run lint:js",
"test:ganache": "ganache-cli --gasLimit 8000000 --quiet &",
"test:truffle": "truffle test",
"test": "solidity-coverage",
"test:coveralls": "coveralls --verbose < ./coverage/lcov.info",
"cz": "kathari cz",
"build": "truffle compile"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@kleros/kathari": "^0.23.0",
"coveralls": "^3.0.2",
"ganache-cli": "^6.3.0",
"husky": "^3.0.9",
"npm-run-all": "^4.1.5",
"openzeppelin-solidity": "^1.12.0",
"solidity-coverage": "^0.5.11",
"standard-version": "^4.4.0",
"truffle": "^4.1.14",
"web3-utils": "^1.0.0-beta.36"
},
"dependencies": {
"@kleros/kleros-interaction": "^0.9.0",
"minimetoken": "^0.2.0"
},
"files": [
"build",
"contracts"
],
"husky": {
"hooks": {
"commit-msg": "kathari commitmsg",
"pre-commit": "yarn run lint && yarn run test:ganache && yarn run test:truffle"
}
}
}