-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1016 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1016 Bytes
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
{
"name": "bugsplat-node",
"version": "4.0.0",
"description": "BugSplat integration for node.js 12+",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"e2e": "vitest run --config vitest.e2e.config.ts",
"build": "tsc",
"release": "npm run build && npm publish --access public"
},
"files": [
"dist"
],
"keywords": [
"bugsplat",
"crash",
"reporting",
"analytics",
"stack",
"trace",
"error",
"javascript",
"node"
],
"homepage": "https://www.bugsplat.com",
"bugs": "https://github.com/BugSplat-Git/bugsplat-node/issues",
"repository": {
"type": "git",
"url": "https://github.com/BugSplat-Git/bugsplat-node"
},
"author": "@bobbyg603",
"license": "MIT",
"peerDependencies": {
"bugsplat": "^9.0.0"
},
"devDependencies": {
"@bugsplat/js-api-client": "^2.0.0",
"@types/node": "^22.19.15",
"dotenv": "^17.3.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}