-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 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
73
{
"name": "@sigfox/koa-k8s-ops-app",
"version": "1.1.1",
"private": false,
"description": "Instantiates a Koa app with default OPS middlewares.",
"keywords": [
"app",
"k8s",
"koa",
"kubernetes",
"liveness",
"ops",
"metrics",
"middleware",
"prometheus",
"readiness"
],
"homepage": "https://github.com/sigfox/javascript/tree/master/packages/koa-k8s-ops-app",
"bugs": {
"url": "https://github.com/sigfox/javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sigfox/javascript.git"
},
"license": "MIT",
"author": "Sigfox developers",
"files": [
"index.js"
],
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:report": "npm run lint -- --format json --output-file eslint-report.json",
"test": "NODE_ENV=test nyc mocha --check-leaks --reporter spec **/*.test.js"
},
"dependencies": {
"@sigfox/koa-k8s-probes": "^1.0.0",
"@sigfox/koa-prometheus": "^1.1.0"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"prom-client": "^11.3.0"
},
"peerDependencies": {
"koa": "^2.7.0"
},
"publishConfig": {
"access": "public"
},
"nyc": {
"check-coverage": true,
"lines": 75,
"statements": 75,
"include": [
"**/*.js"
],
"exclude": [
"**/*.spec.js",
"**/*.test.js"
],
"reporter": [
"html",
"text-summary"
]
}
}