-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
82 lines (82 loc) · 2.21 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
75
76
77
78
79
80
81
82
{
"name": "raygun",
"description": "Raygun package for Node.js, written in TypeScript",
"version": "2.1.0",
"homepage": "https://github.com/MindscapeHQ/raygun4node",
"author": {
"name": "Raygun",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/MindscapeHQ/raygun4node.git"
},
"bugs": {
"url": "https://github.com/MindscapeHQ/raygun4node/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MindscapeHQ/raygun4node/blob/master/LICENSE-MIT"
}
],
"main": "build/raygun.js",
"types": "build/raygun.d.ts",
"engines": {
"node": ">= 0.10.0"
},
"files": [
"build/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"//eslint": "performs static analysis over JS files and examples",
"eslint": "eslint --config eslint.config.mjs --fix test/*.js examples/**/*.js",
"//tseslint": "performs static analysis over TS files and examples",
"tseslint": "eslint --config tseslint.config.mjs --fix lib/*.ts",
"//prettier": "performs code formatting over project files and examples",
"prettier": "prettier --write lib/*.ts test/*.js examples",
"//prepare": "prepare project for distribution",
"prepare": "tsc",
"//test": "runs tests on main project",
"test": "tap --node-arg=-r --node-arg=ts-node/register --disable-coverage test/*_test.js"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/node": "^22.0.2",
"@types/stack-trace": "0.0.33",
"@types/uuid": "^10.0.0",
"eslint": "^9.16.0",
"eslint-plugin-tsdoc": "^0.3.0",
"express": "^4.19.2",
"http-terminator": "^3.2.0",
"jshint": "^2.13.6",
"nock": "~13",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"tap": "^21.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.17.0",
"verror": "^1.10.1"
},
"dependencies": {
"@types/express": "^5.0.0",
"debug": "^4.3.4",
"stack-trace": "0.0.10",
"uuid": "^11.0.2"
},
"keywords": [
"APM",
"crash",
"debug",
"error",
"logging",
"raygun",
"reporting",
"tracking"
]
}