forked from spacebetween/hapi-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "hapi-sentry",
"version": "3.3.0",
"description": "hapi plugin for @sentry/node",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc --build src/",
"test": "npm run build && ava -v src/test.ts --serial",
"lint": "eslint --ignore-path .gitignore src/**",
"lint-fix": "eslint --fix --ignore-path .gitignore src/**",
"format": "prettier --write ./src/"
},
"files": [
"lib/**"
],
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"arrow-parens": 0,
"strict": 0,
"no-underscore-dangle": 0,
"no-param-reassign": 0
}
},
"engines": {
"node": ">=8.9.0"
},
"repository": "github:space-between/hapi-sentry",
"keywords": [
"hapi",
"sentry",
"plugin"
],
"author": "Thomas Purchas<[email protected]>",
"license": "MIT",
"peerDependencies": {
"@hapi/hapi": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
"@sentry/node": "^7.0.0"
},
"dependencies": {
"@sentry/tracing": "^7.8.0",
"@sentry/utils": "^7.8.0",
"cookie": "^0.5.0",
"events-intercept": "^2.0.0",
"shimmer": "^1.2.1",
"zod": "^3.17.10"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
}
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@hapi/hapi": "^20.2.2",
"@hapi/shot": "^6.0.0",
"@sentry/node": "^7.8.0",
"@sentry/types": "^7.8.0",
"@types/cookie": "^0.5.1",
"@types/hapi__hapi": "^20.0.12",
"@types/hapi__joi": "^17.1.8",
"@types/node": "^18.6.1",
"@types/shimmer": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"ava": "^4.3.1",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"p-defer": "^4.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}