-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.55 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
{
"name": "@frontseed/roll-call",
"version": "0.1.0",
"description": "Service dependency checks for a JSON health endpoint",
"main": "lib/index.js",
"license": "MIT",
"engines": {
"node": ">=8.6"
},
"scripts": {
"commit": "git-cz",
"lint": "standard",
"test": "npm run lint && npm run test:unit",
"test:unit": "nyc mocha"
},
"dependencies": {
"axios": "^0.18.0",
"http-status-codes": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"git-cz": "^1.7.1",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"nyc": "^13.1.0",
"semantic-release": "^15.12.3",
"sinon": "^7.1.1",
"sinon-chai": "^3.3.0",
"standard": "^12.0.1",
"travis-deploy-once": "^5.0.9"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"reporter": [
"none"
],
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"lib/**/*.js"
]
},
"keywords": [
"healthcheck",
"microservice",
"nodejs",
"service-dependency",
"statuspage"
],
"repository": {
"type": "git",
"url": "https://github.com/frontseed/roll-call.git"
},
"author": "Attila Beregszaszi <[email protected]>",
"homepage": "https://github.com/frontseed/roll-call#readme",
"bugs": {
"url": "https://github.com/frontseed/roll-call/issues"
}
}