-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
108 lines (108 loc) · 3.09 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "prometheus-api-metrics",
"version": "0.0.0",
"description": "API and process monitoring with Prometheus for Node.js micro-service",
"author": "Idan Tovi",
"scripts": {
"unit-tests": "mocha ./test/unit-test/*-test.js",
"no-koa-test": "mocha ./test/unit-test/*-test.js ./test/integration-tests/express/*-test.js --require ts-node/register test/integration-tests/nest-js/*.spec.ts",
"types-check": "tsc -p .",
"test": "mocha ./test/unit-test/*-test.js ./test/**/**/*-test.js --require ts-node/register test/integration-tests/nest-js/*.spec.ts",
"integration-tests": "nyc mocha ./test/**/**/*-test.js --require ts-node/register test/integration-tests/nest-js/*.spec.ts",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "node_modules/eslint/bin/eslint.js src/**/*.js test/**/*.js"
},
"main": "src/index.js",
"nyc": {
"report-dir": "./coverage",
"lines": 95,
"statements": 95,
"functions": 100,
"branches": 90,
"include": [
"src/*.js"
],
"exclude": [
"src/index.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.28",
"@types/koa": "^2.13.4",
"debug": "^3.2.6",
"lodash.get": "^4.4.2",
"pkginfo": "^0.4.1"
},
"peerDependencies": {
"prom-client": ">=12 <16"
},
"devDependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/testing": "^7.4.4",
"@types/mocha": "^5.2.6",
"@types/node": "^9.6.57",
"@types/supertest": "^2.0.10",
"axios": "^0.21.1",
"axios-time": "^1.0.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.16.4",
"koa": "^2.13.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"lodash.clonedeep": "^4.5.0",
"mocha": "^8.1.3",
"nock": "^10.0.6",
"node-mocks-http": "^1.9.0",
"nyc": "^15.1.0",
"prom-client": "^13.2.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
"request-promise-native": "^1.0.9",
"rewire": "^4.0.1",
"rxjs": "^6.6.6",
"sinon": "^5.0.10",
"supertest": "^3.4.2",
"ts-node": "^7.0.1",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PayU/prometheus-api-metrics.git"
},
"keywords": [
"monitoring",
"nodejs",
"node",
"prometheus",
"api",
"express",
"koa",
"metrics"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PayU/prometheus-api-metrics/issues"
},
"homepage": "https://github.com/PayU/prometheus-api-metrics#readme"
}