forked from pipedrive/kardia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "kardia",
"version": "0.14.0",
"description": "A humane process status API module to expose any operational/internal indicators of any Node.js process for status aggregation and monitoring. JSON format over HTTP protocol.",
"main": "index.js",
"engines": {
"node": ">=6.0"
},
"typings": "types/index.d.ts",
"scripts": {
"test": "mocha test --exit",
"coverage": "npm run-script test-travis",
"sonar": "npm run-script test-travis",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --exit -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "git://github.com/pipedrive/kardia.git"
},
"keywords": [
"status",
"status",
"page",
"process",
"monitoring",
"healthcheck",
"microservices"
],
"author": "Pipedrive Inc",
"contributors": [
"Martin Tajur",
"Andris Reinman",
"Timur Hassanov"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pipedrive/kardia/issues"
},
"homepage": "https://github.com/pipedrive/kardia",
"devDependencies": {
"async": "^1.0.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"proxyquire": "^1.7.4",
"request": "^2.88.0",
"should": "^8.3.1",
"should-sinon": "0.0.5",
"sinon": "^1.17.1"
}
}