-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 950 Bytes
/
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
{
"name": "micro-health",
"version": "2.0.0",
"description": "An extension of micro with a Health Check API",
"author": "fmiras",
"license": "MIT",
"repository": "fmiras/micro-health",
"bugs": "https://github.com/fmiras/micro-health/issues",
"homepage": "https://github.com/fmiras/micro-health",
"keywords": [
"micro",
"health",
"microservices",
"micro-health",
"health-check-api"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "xo && nyc ava",
"precommit": "lint-staged && ava"
},
"lint-staged": {
"*.js": [
"xo --fix"
]
},
"xo": {
"extends": "prettier"
},
"devDependencies": {
"ava": "1.3.0",
"husky": "1.3.0",
"lint-staged": "8.1.0",
"micro": "9.3.3",
"nyc": "13.3.0",
"prettier": "1.17.0",
"rewire": "4.0.1",
"sinon": "7.2.5",
"xo": "0.24.0"
},
"peerDependencies": {
"micro": "^9.1.4"
}
}