-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.82 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.82 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "error-explorer-node-reporter",
"version": "1.1.2",
"description": "Node.js SDK for Error Explorer - Capture and report errors automatically",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"error",
"monitoring",
"logging",
"nodejs",
"express",
"error-tracking",
"debugging"
],
"author": "Error Explorer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/error-explorer/error-explorer.git",
"directory": "packages/node-error-reporter"
},
"homepage": "https://github.com/error-explorer/error-explorer#readme",
"bugs": {
"url": "https://github.com/error-explorer/error-explorer/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"express": "^5.1.0",
"jest": "^29.0.0",
"prettier": "^3.6.2",
"supertest": "^7.1.1",
"ts-jest": "^29.0.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"express": "^4.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"engines": {
"node": ">=14.0.0"
}
}