forked from Bauer-Xcel-Media/node-healthchecks-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "healthchecks-api",
"version": "0.1.1",
"description": "The implementation of the Health Checks API (https://github.com/hootsuite/health-checks-api) provided by Hootsuite (https://hootsuite.com/).",
"homepage": "https://github.com/Bauer-Xcel-Media/node-healthchecks-api",
"main": "index.js",
"scripts": {
"test": "npm run -s test:jest && npm run test:success || npm run -s test:failure",
"test:jest": "cross-env NODE_ENV=test jest --verbose --coverage ./test/unit",
"test:success": "echo 'TESTS SUCCESSFUL :-)'",
"test:failure": "echo 'TESTS FAILED :-(' && exit 1",
"cz": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"lint": "eslint index.js lib test/unit",
"pretest": "npm run lint"
},
"author": {
"name": "CORE Services Team",
"email": "[email protected]",
"url": "http://confluence.bauermedia-digital.com/display/TEAM/Team+Core+Services"
},
"contributors": [
{
"name": "Waldek Kozba",
"email": "[email protected]",
"url": "https://github.com/valdemon"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bauer-Xcel-Media/node-healthchecks-api.git"
},
"bugs": "https://github.com/Bauer-Xcel-Media/node-healthchecks-api/issues",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"elasticsearch": "^16.0.0",
"express": "^4.17.1",
"http-status": "^1.2.0",
"js-yaml": "^3.13.1",
"json-stringify-safe": "^5.0.1",
"mime-types": "^2.1.20",
"moment": "^2.22.2",
"mongodb": "^3.1.4",
"mysql": "^2.16.0",
"os-utils": "0.0.14",
"redis": "^2.8.0",
"superagent": "^5.0.2",
"superagent-no-cache": "^0.1.1"
},
"keywords": [
"health",
"healthcheck",
"healthchecks",
"health-check",
"health-checks",
"microservice",
"microservices",
"hootsuite",
"health-checks-api",
"healthchecks-api"
],
"devDependencies": {
"commitizen": "^4.0.3",
"cross-env": "^7.0.3",
"cwd": "^0.10.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.6.1",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsdoc": "^15.8.3",
"istanbul": "^0.4.5",
"jest": "^26.6.3",
"nock": "^10.0.6",
"semantic-release": "^17.3.8",
"travis-deploy-once": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}