This repository was archived by the owner on Jan 18, 2023. It is now read-only.
forked from hydra-newmedia/hapi-sentry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.34 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
{
"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/"
},
"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<thomas.purchas@hrgo.co.uk>",
"license": "MIT",
"peerDependencies": {
"@hapi/hapi": "^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
"@sentry/node": "^6.0.0"
},
"dependencies": {
"@sentry/utils": "^6.12.0",
"events-intercept": "^2.0.0",
"shimmer": "^1.2.1",
"zod": "^3.8.1"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
}
},
"devDependencies": {
"@ava/typescript": "^2.0.0",
"@hapi/hapi": "^20.0.0",
"@hapi/shot": "^5.0.5",
"@sentry/node": "^6.11.0",
"@sentry/types": "^6.12.0",
"@types/hapi__hapi": "^20.0.9",
"@types/hapi__joi": "^17.1.7",
"@types/node": "^16.7.4",
"@types/shimmer": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.0",
"lint-staged": "^11.0.0",
"p-defer": "^3.0.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
}
}