-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "crashless",
"version": "0.4.1",
"description": "Production-ready observability for Node.js. Zero npm-dependency middleware that prevents Express servers from crashing and provides built-in monitoring.",
"type": "module",
"main": "src/index.js",
"types": "index.d.ts",
"files": [
"src/**/*",
"index.d.ts",
"LICENSE"
],
"keywords": [
"express",
"vegaa",
"middleware",
"error-handler",
"async-errors",
"crashless",
"logging",
"stability",
"telemetry",
"observability",
"metrics",
"monitoring",
"dashboard",
"prometheus"
],
"author": "Sunny Ghodeswar",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sunnyghodeswar/crashless.git"
},
"bugs": {
"url": "https://github.com/sunnyghodeswar/crashless/issues"
},
"homepage": "https://github.com/sunnyghodeswar/crashless#readme",
"scripts": {
"test": "mocha test/**/*.test.js --timeout 10000",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"chai": "^5.3.3",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"mocha": "^11.7.4",
"semantic-release": "^23.0.0",
"supertest": "^7.1.4",
"vegaa": "^1.1.4"
}
}