-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.22 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
77
78
79
80
81
82
83
84
85
{
"name": "@kleros/archon",
"version": "2.4.0",
"description": "A javascript library for Ethereum dispute resolution. Provides the ability to interface with Arbitrable and Arbitrator Ethereum smart contracts, as defined in ERC 792.",
"license": "MIT",
"keywords": [
"Blockchain",
"Ethereum",
"Arbitration",
"Arbitrable",
"Arbitrator",
"ERC 792",
"Evidence",
"MetaEvidence"
],
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "cross-env NODE_ENV=production babel src -d dist",
"docs": "esdoc",
"ganache": "ganache-cli",
"prepublishOnly": "run-s build",
"preversion": "run-s test",
"release": "standard-version",
"test": "jest --config ./jest.config.js",
"prepare": "husky install"
},
"dependencies": {
"@babel/runtime": "^7.22.10",
"@mapbox/node-pre-gyp": "^1.0.11",
"axios": "^0.21.4",
"iframe": "^1.0.0",
"js-sha3": "^0.8.0",
"multihashes": "0.4.21",
"v8-sandbox": "^3.2.8"
},
"peerDependencies": {
"web3": "^1.3.6"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"electron": "^13.6.9",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^3.4.1",
"ganache-cli": "^6.12.2",
"ganache-core": "^2.13.2",
"husky": ">=6",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"lint-staged": "^14.0.0",
"nock": "^13.3.3",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"prettier": "2.8.8",
"prettier-config-standard": "^4.1.0",
"solc": "0.8.21",
"standard-version": "^9.5.0",
"url": "^0.11.1",
"util": "^0.12.5"
},
"volta": {
"node": "16.20.2",
"yarn": "3.3.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"packageManager": "yarn@3.3.1"
}