-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "@kleros/kleros-interaction",
"version": "0.10.0",
"description": "Smart contracts interacting with Kleros.",
"keywords": [
"kleros",
"random",
"arbitration",
"arbitrable",
"arbitrator",
"rng"
],
"repository": "https://github.com/kleros/kleros-interaction",
"author": "Kleros",
"license": "MIT",
"private": false,
"files": [
"contracts",
"build"
],
"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 --defaultBalanceEther 10000 --quiet &",
"test:truffle": "truffle test",
"test": "run-p test:*",
"cz": "kathari cz",
"build": "truffle compile --all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "kathari precommit",
"commit-msg": "kathari commitmsg"
}
},
"devDependencies": {
"@kleros/kathari": "^0.13.3",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"ganache-cli": "^6.3.0",
"husky": "^1.2.0",
"npm-run-all": "^4.1.3",
"openzeppelin-test-helpers": "^0.4.3",
"pify": "^4.0.1",
"standard-version": "^4.4.0",
"truffle": "4.1.16"
},
"dependencies": {
"@kleros/kleros": "^0.1.2",
"@realitio/realitio-contracts": "^2.0.5",
"@chainlink/contracts": "0.2.0",
"minimetoken": "^0.2.0",
"openzeppelin-solidity": "^1.12.0",
"web3-utils": "^1.2.1"
}
}