-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
81 lines (78 loc) · 1.99 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
{
"name": "raygun",
"description": "Raygun package for Node.js, written in TypeScript",
"version": "0.14.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 project files and examples",
"eslint": "eslint --fix lib/*.ts test/*.js examples/**/*.js",
"//prettier": "performs code formatting over project files and examples",
"prettier": "prettier --write lib/*.ts test/*.js examples/**/*.js",
"//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.1.1",
"@types/node": "^20.12.7",
"@types/stack-trace": "0.0.33",
"@types/uuid": "^9.0.8",
"eslint": "^8.57.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": "^18.7.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"verror": "^1.10.1"
},
"dependencies": {
"@types/express": "^4.17.21",
"debug": "^4.3.4",
"object-to-human-string": "0.0.3",
"stack-trace": "0.0.10",
"uuid": "^9.0.1"
},
"keywords": [
"APM",
"crash",
"debug",
"error",
"logging",
"raygun",
"reporting",
"tracking"
]
}