-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2 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
{
"name": "healthcheck-ping",
"version": "2.0.1",
"description": "Express middleware exposing a health check endpoint",
"main": "lib/healthcheckMiddleware",
"files": [
"lib/",
"LICENSE",
"README.md",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"license": "MIT",
"author": "Mathias Schreck <[email protected]>",
"contributors": [
"Christian Rackerseder <[email protected]>"
],
"dependencies": {
"express": "^4.13.3"
},
"devDependencies": {
"@types/express": "4.16.0",
"coveralls": "3.0.2",
"dtslint": "0.3.0",
"eslint": "5.0.1",
"eslint-config-holidaycheck": "0.13.1",
"chai": "4.1.2",
"mocha": "5.2.0",
"nyc": "12.0.2",
"sinon": "6.1.0",
"sinon-chai": "3.2.0",
"supertest": "3.1.0",
"pr-log": "3.0.0"
},
"scripts": {
"test:functional": "mocha test/functional --reporter spec --recursive",
"test:unit": "mocha test/unit --reporter spec --recursive",
"dtslint": "dtslint types",
"pretest": "eslint . && npm run dtslint",
"test": "nyc npm run test:unit && npm run test:functional",
"changelog": "pr-log",
"coveralls": "cat ./build/coverage/lcov.info | coveralls"
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"check-coverage": true,
"sourceMap": true,
"instrumment": true,
"report-dir": "./build/coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/holidaycheck/healthcheck-ping.git"
},
"keywords": [
"express",
"middleware",
"healthcheck",
"health",
"ping"
]
}