-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "validator-monitor",
"version": "0.0.1",
"description": "Sidecar to monitor validators for unhelpful, but not slashable behaviour",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "NODE_ENV=dev mocha 'test/**/*.spec.js'",
"prepare": "husky install",
"watch": "npm-watch"
},
"watch": {
"start": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajsutton/validator-monitor.git"
},
"keywords": [
"ethereum",
"eth2",
"beacon"
],
"author": "Adrian Sutton <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ajsutton/validator-monitor/issues"
},
"homepage": "https://github.com/ajsutton/validator-monitor#readme",
"devDependencies": {
"chai": "^4.3.4",
"husky": "^7.0.2",
"mocha": "^9.1.1",
"npm-watch": "^0.11.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"bitset": "^5.1.1",
"eventsource": "^1.1.0",
"got": "^11.8.2"
}
}