This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "appeal-utils",
"version": "0.1.0",
"description": "Solidity libraries that help arbitrable contracts become arbitrable (and appealable!).",
"main": "index.js",
"author": "Kleros",
"license": "MIT",
"keywords": [
"kleros",
"appeal",
"arbitration",
"arbitrable",
"arbitrator",
"library"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kleros/arbitrable-contract-libraries.git"
},
"private": false,
"files": [
"contracts",
"build"
],
"scripts": {
"build": "npx hardhat compile",
"clean": "npx hardhat clean",
"prettify": "kathari prettify",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:js": "kathari lint:js",
"lint": "npm run lint:sol && npm run lint:js",
"b:test": "npx hardhat test",
"pretest": "run-s -s build",
"test": "mocha --timeout 10000 -r hardhat/register",
"pretest:watch": "run-s -s build",
"test:watch": "mocha -r hardhat/register --watch-files '**/*.js,**/*.sol' --watch",
"cz": "kathari cz"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "kathari lint:js && solhint 'contracts/**/*.sol'",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@kleros/erc-792": "^7.0.0",
"@kleros/ethereum-libraries": "^7.0.0",
"@kleros/kathari": "^0.13.3",
"@kleros/kleros-interaction": "^0.10.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.9",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"ethereum-waffle": "^3.1.0",
"ethers": "^5.0.14",
"ganache-cli": "^6.3.0",
"hardhat": "^2.0.6",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"pify": "^4.0.1",
"standard-version": "^4.4.0",
"web3": "^1.3.0"
},
"dependencies": {
"@kleros/kleros": "^0.1.2",
"@openzeppelin/contracts": "^3.2.1-solc-0.7"
}
}