forked from digikare/nestjs-prom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "@digikare/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 ./node_modules/.bin/ts-node tests/src/main.ts",
"test:live": "ts-node tests/src/main.ts"
},
"author": "Tieu-Philippe KHIM <[email protected]>",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^8.2.3",
"@nestjs/core": "^8.2.3",
"@nestjs/platform-express": "^8.2.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.13",
"@types/response-time": "^2.3.5",
"@types/supertest": "^2.0.11",
"jest": "^27.4.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.4.0"
},
"dependencies": {
"@nestjs/testing": "^8.2.3",
"prom-client": "^14.0.1",
"response-time": "^2.3.2",
"url-value-parser": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digikare/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"
}
}