forked from LuxChanLu/moleculer-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "moleculer-sentry",
"version": "1.0.3",
"description": "Moleculer service for sentry error monitoring",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuxChanLu/moleculer-sentry.git"
},
"keywords": [
"moleculer",
"sentry"
],
"author": "Hugo Meyronneinc <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuxChanLu/moleculer-sentry/issues"
},
"homepage": "https://github.com/LuxChanLu/moleculer-sentry#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 12.x.x"
},
"dependencies": {
"@sentry/node": "^7.28.1",
"@sentry/utils": "^7.28.1"
},
"devDependencies": {
"@sentry/hub": "^7.28.1",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"moleculer": "^0.13.13"
}
}