-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "hapi-sentry",
"version": "4.0.1-2",
"description": "hapi plugin for @sentry/node",
"main": "index.js",
"scripts": {
"test": "ava -v test.mjs --serial",
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ignore-path .gitignore ."
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"arrow-parens": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-param-reassign": 0
},
"plugins": [
"ava"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydra-newmedia/hapi-sentry.git"
},
"keywords": [
"hapi",
"sentry",
"plugin"
],
"author": "Christian Hotz <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@hapi/hapi": ">=19 <22"
},
"dependencies": {
"@hapi/hoek": "^11.0.2",
"@sentry/node": "^7.38.0",
"@sentry/types": "^7.38.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@hapi/hapi": "^21.3.0",
"ava": "^6.0.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"p-defer": "^4.0.0"
}
}