This repository was archived by the owner on Nov 20, 2025. It is now read-only.
forked from digikare/nestjs-prom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 KB
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
{
"name": "@proxyco/nestjs-prom",
"version": "1.0.0",
"description": "A promotheus module for nestjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"test:debug": "node --inspect-brk ./node_modules/.bin/ts-node tests/src/main.ts",
"test:live": "ts-node tests/src/main.ts"
},
"author": "Tieu-Philippe KHIM <pkhim@digikare.com>",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^8.4.0",
"@nestjs/core": "^8.4.0",
"@nestjs/platform-express": "^8.4.0",
"@types/jest": "^27.0.0",
"@types/node": "^12.12.53",
"@types/response-time": "^2.3.4",
"@types/supertest": "^2.0.10",
"jest": "^27.0.0",
"reflect-metadata": "^0.1.13",
"supertest": "^4.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.1 || ^8.0.6",
"@nestjs/core": "^7.0.1 || ^8.0.6",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.0.0"
},
"dependencies": {
"@nestjs/testing": "^7.3.2",
"prom-client": "^13.2.0",
"response-time": "^2.3.2",
"url-value-parser": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proxyco/nestjs-prom.git"
},
"keywords": [
"nestjs",
"promotheus"
],
"bugs": {
"url": "https://github.com/digikare/nestjs-prom/issues"
},
"homepage": "https://github.com/digikare/nestjs-prom#readme",
"contributors": [
"Michael Yankelev @FSM1",
"Ashleigh Simonelli @bashleigh",
"@blackkopcap",
"@litichevskiydv"
],
"publishConfig": {
"tag": "next"
}
}