forked from kleros/kleros
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@kleros/kleros",
"version": "0.0.7",
"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": "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 --gasLimit 8000000 --quiet &",
"test:truffle": "truffle test",
"test": "solidity-coverage",
"test:coveralls": "coveralls < ./coverage/lcov.info",
"precommit": "kleros-scripts precommit",
"commitmsg": "kleros-scripts commitmsg",
"cz": "kleros-scripts cz",
"build": "truffle compile"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"coveralls": "^3.0.2",
"ganache-cli": "^6.3.0",
"husky": "^0.14.3",
"kleros-scripts": "^0.12.0",
"npm-run-all": "^4.1.5",
"openzeppelin-solidity": "^1.12.0",
"solidity-coverage": "^0.5.11",
"standard-version": "^4.4.0",
"truffle": "^5.0.1",
"web3-utils": "^1.0.0-beta.36"
},
"dependencies": {
"@kleros/kleros-interaction": "^0.9.0",
"minimetoken": "^0.2.0"
}
}