-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "xdai-cross-chain-arbitration",
"version": "0.1.0",
"description": "Kleros cross-chain arbitration contracts for xDAI",
"main": "index.js",
"repository": "git@github.com:kleros/xdai-cross-chain-arbitration.git",
"author": "Kleros",
"license": "MIT",
"files": [
"contracts"
],
"scripts": {
"build": "buidler compile",
"clean": "buidler clean",
"lint": "run-p -s lint:*",
"lint:js": "eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"fix": "run-p -s fix:*",
"fix:js": "eslint --fix '**/*.js'",
"fix:sol": "prettier --write 'contracts/**/*.sol'",
"b:test": "buidler test",
"pretest": "run-s -s build",
"test": "mocha -r @nomiclabs/buidler/register",
"pretest:watch": "run-s -s build",
"test:watch": "mocha -r @nomiclabs/buidler/register --watch-files '**/*.js,**/*.sol' --watch"
},
"dependencies": {
"@kleros/erc-792": "^7.0.0",
"@kleros/ethereum-libraries": "^7.0.0"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/buidler-ethers": "^2.0.2",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@openzeppelin/test-helpers": "^0.5.6",
"chai": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.2",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.4",
"web3": "^1.3.0"
}
}