forked from kleros/kleros-interaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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-interaction",
"version": "0.0.25",
"description": "Smart contracts interacting with Kleros.",
"main": "index.js",
"files": [
"contracts",
"build",
"helpers"
],
"scripts": {
"prettify": "kleros-scripts prettify",
"lint:sol": "kleros-scripts lint:sol",
"lint:js": "kleros-scripts lint:js",
"lint": "yarn run lint:sol && yarn run lint:js",
"test:ganache": "ganache-cli &",
"test:truffle": "truffle test",
"test": "run-p test:*",
"precommit": "kleros-scripts precommit",
"commitmsg": "kleros-scripts commitmsg",
"cz": "kleros-scripts cz",
"build": "truffle compile"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kleros/kleros-interaction.git"
},
"keywords": [
"kleros",
"random",
"arbitration",
"arbitrable",
"arbitrator",
"rng"
],
"author": "Kleros",
"license": "MIT",
"bugs": {
"url": "https://github.com/kleros/kleros-interaction/issues"
},
"homepage": "https://github.com/kleros/kleros-interaction#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"eth-gas-reporter": "0.1.1",
"ganache-cli": "^6.1.6",
"husky": "^0.14.3",
"kleros-scripts": "^0.12.0",
"npm-run-all": "^4.1.3",
"solidity-coverage": "^0.5.7",
"standard-version": "^4.4.0",
"truffle": "^4.1.13",
"web3": "^1.0.0-beta.22"
},
"dependencies": {
"minimetoken": "^0.2.0",
"openzeppelin-solidity": "^1.12.0"
}
}