-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.97 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
76
{
"name": "escrow-contracts",
"version": "0.1.0",
"description": "Smart contracts interacting with Kleros.",
"main": "index.js",
"author": "Kleros",
"license": "MIT",
"keywords": [
"kleros",
"escrow",
"arbitration",
"arbitrable",
"arbitrator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kleros/escrow-contracts.git"
},
"private": false,
"files": [
"contracts",
"build"
],
"scripts": {
"build": "buidler compile",
"clean": "buidler clean",
"lint": "prettier --write '**/*.*(sol|js|json|md)'",
"lint:check": "prettier --check '**/*.*(sol|js|json|md)'",
"lint:sol": "solhint 'contracts/**/*.sol'",
"b:test": "buidler test",
"pretest": "run-s -s build",
"test": "mocha --timeout 10000 -r @nomiclabs/buidler/register",
"pretest:watch": "run-s -s build",
"test:watch": "mocha -r @nomiclabs/buidler/register --watch-files '**/*.js,**/*.sol' --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn lint:sol",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@kleros/erc-792": "^8.0.0",
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-waffle": "^2.1.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/test-helpers": "^0.5.6",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"ethereum-waffle": "^3.1.0",
"ethers": "^5.0.14",
"ganache-cli": "^6.3.0",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"pify": "^4.0.1",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.2.2",
"solhint-plugin-prettier": "^0.0.5",
"standard-version": "^4.4.0",
"web3": "^1.3.0"
},
"dependencies": {
"@kleros/kleros": "^0.1.2",
"@openzeppelin/contracts": "^4.8.2"
},
"volta": {
"node": "12.22.12"
}
}