forked from Proof-Of-Humanity/Proof-Of-Humanity
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
49
50
51
52
53
54
55
56
{
"name": "proof-of-humanity",
"version": "1.0.0",
"description": "Curated registry for people",
"main": "index.js",
"repository": "https://github.com/Proof-Of-Humanity/Proof-Of-Humanity",
"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",
"test:ganache": "ganache-cli --gasLimit 8000000 --defaultBalanceEther 10000 --quiet &",
"test:truffle": "truffle test",
"test": "run-p test:*",
"cz": "kathari cz",
"build": "truffle compile",
"release": "standard-version"
},
"files": [
"build/contracts/*.json"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "kathari precommit",
"commit-msg": "kathari commitmsg"
}
},
"devDependencies": {
"@kleros/kathari": "^0.25.0",
"eth-gas-reporter": "^0.2.0",
"ganache-cli": "^6.4.4",
"husky": "^2.4.1",
"jsonfile": "^5.0.0",
"npm-run-all": "^4.1.5",
"standard-version": "^7.0.0",
"truffle": "^5.0.25"
},
"dependencies": {
"@kleros/erc-792": "^3.0.0",
"@kleros/ethereum-libraries": "^1.0.0",
"@openzeppelin/contracts": "^2.3.0",
"chai": "^4.2.0",
"openzeppelin-test-helpers": "^0.4.3",
"solidity-bytes-utils": "^0.0.8",
"solidity-rlp": "^2.0.1",
"web3-utils": "^1.2.1"
}
}