forked from digikare/nestjs-prom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"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-brk ./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.0.6",
"@nestjs/core": "^8.0.6",
"@nestjs/platform-express": "^8.0.6",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/response-time": "^2.3.5",
"@types/supertest": "^2.0.11",
"jest": "^27.0.6",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"dependencies": {
"@nestjs/graphql": "^8.0.2",
"@nestjs/testing": "^8.0.6",
"prom-client": "^12.0.0",
"response-time": "^2.3.2",
"url-value-parser": "^2.0.3"
},
"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"
}
}