forked from AeroNotix/nestjs-prom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "@digikare/nestjs-prom",
"version": "0.2.2",
"description": "A promotheus module for nestjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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"
},
"author": "Tieu-Philippe KHIM <[email protected]>",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3",
"@types/node": "^10.14.16",
"prom-client": "^11.5.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"@nestjs/common": "^6.5.3",
"@nestjs/core": "^6.5.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2"
},
"dependencies": {},
"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"
]
}