-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "loopback-healthcheck-middleware",
"version": "0.0.2",
"description": "loopback middleware to install an endpoint for basic service health check",
"main": "healthcheck.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.test.js -b --timeout 30000 --reporter spec",
"precommit": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wiredcraft/loopback-healthcheck-middleware.git"
},
"keywords": [
"loopback",
"middleware",
"healthcheck"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wiredcraft/loopback-healthcheck-middleware/issues"
},
"homepage": "https://github.com/Wiredcraft/loopback-healthcheck-middleware#readme",
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-prettier": "^3.1.0",
"eslint-config-wcl-backend": "^0.3.0",
"eslint-plugin-prettier": "^3.0.0",
"loopback": "^3.23.2",
"loopback-boot": "^2.27.1",
"mocha": "^5.2.0",
"nodemon": "^1.17.3",
"prettier": "^1.14.3",
"supertest": "^3.3.0"
}
}