-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "nest-status-monitor",
"version": "0.1.4",
"description": "Realtime Monitoring for Express-based Node applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/GenFirst/nest-status-monitor.git"
},
"author": "ivanvs <robince885@gmail.com>",
"license": "MIT",
"keywords": [
"nestjs",
"status",
"monitoring",
"node"
],
"devDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"@nestjs/testing": "^6.0.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.12.1",
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"nestjs-config": "^1.2.2",
"prettier": "^1.19.1",
"supertest": "^3.3.0",
"ts-jest": "^25.1.0",
"typescript": "^3.0.3"
},
"dependencies": {
"@nestjs/websockets": "^6.11.11",
"axios": "^0.19.2",
"debug": "^2.6.8",
"handlebars": "4.7.3",
"on-headers": "^1.0.2",
"pidusage": "^1.1.6",
"reflect-metadata": "^0.1.13",
"request-promise-native": "^1.0.8",
"socket.io": "^2.0.3"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "npm run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc --declaration",
"format": "prettier src/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "tests",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/GenFirst/nest-status-monitor/issues"
},
"homepage": "https://github.com/GenFirst/nest-status-monitor#readme",
"directories": {
"example": "examples"
}
}