-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "hapi-dev-errors",
"description": "Return better error details and skip the look at command line to catch the issue.",
"version": "4.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-dev-errors/issues"
},
"dependencies": {
"youch": "~3.3.2",
"youch-terminal": "~2.2.0"
},
"devDependencies": {
"@hapi/boom": "~10.0.0",
"@hapi/code": "~9.0.0",
"@hapi/hapi": "~21.3.0",
"@hapi/joi": "~17.1.0",
"@hapi/lab": "~25.3.0",
"@hapi/vision": "~7.0.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.2",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.2.0",
"eslint-plugin-standard": "~5.0.0",
"husky": "~9.1.1",
"sinon": "~19.0.2"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-dev-errors#readme",
"keywords": [
"hapi",
"hapijs",
"plugin",
"error",
"errors",
"debugging",
"developer"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-dev-errors.git"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "lab --assert @hapi/code --leaks --coverage --lint"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}