-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "socket.io-prometheus-tracker",
"version": "0.0.3-alpha.4",
"description": "Prometheus metrics tracker for socket.io servers.",
"main": "./build/index.js",
"scripts": {
"doc": " typedoc src/index.ts",
"prebuild": "del-cli \"./docs/**/*\" && del-cli \"./build/**/*\"",
"build:source": "tsc -p tsconfig.dist.json",
"build": "npm run prebuild && npm run build:source && npm run doc",
"lint": "eslint \"./src/**/*.ts\" --color",
"lint:fix": "eslint \"./src/**/*.ts\" --color --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsau-/socket.io-prometheus-tracker.git"
},
"keywords": [
"prometheus",
"socket.io",
"socketio",
"metrics",
"tracker"
],
"author": "Jon Saunders",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsau-/socket.io-prometheus-tracker/issues"
},
"homepage": "https://github.com/jsau-/socket.io-prometheus-tracker#readme",
"devDependencies": {
"@types/jest": "27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"cross-env": "7.0.3",
"del-cli": "4.0.1",
"eslint": "7.26.0",
"express": "4.17.3",
"jest": "27.5.1",
"jest-html-reporter": "3.4.2",
"node-notifier": "10.0.1",
"prettier": "2.5.1",
"socket.io-client": "4.4.1",
"ts-jest": "27.1.3",
"typedoc": "0.22.11",
"typescript": "4.5.4"
},
"dependencies": {
"socket.io": "^4.0.0",
"prom-client": "^15.0.0"
}
}