-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
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
{
"name": "proactive-deps",
"version": "1.3.0",
"description": "A library for managing proactive dependency checks in Node.js applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/dantheuber/proactive-deps",
"bugs": {
"url": "https://github.com/dantheuber/proactive-deps/issues"
},
"keywords": [
"proactive",
"dependencies",
"dependency-check",
"node",
"typescript",
"cache",
"cache-dependency",
"prometheus",
"monitoring",
"metrics",
"performance",
"health-check",
"health",
"health-checks",
"healthcheck",
"health-checker",
"cache-manager"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dantheuber/proactive-deps.git"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build:docs": "typedoc --out docs src/index.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"author": "Daniel Essig",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.1",
"typedoc": "^0.28.2",
"typescript": "^5.8.3"
},
"dependencies": {
"cache-manager": "^6.4.2",
"prom-client": "^15.1.3"
},
"files": [
"dist/**/*"
]
}