-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
83 lines (83 loc) · 1.89 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
{
"name": "hapi-error",
"version": "3.0.0",
"description": "catch errors in your hapi application and display the appropriate error message/page",
"main": "lib/index.js",
"scripts": {
"test": "nyc tape ./test/*.test.js | tap-nyc",
"nocov": "tape ./test/*.test.js",
"dev": "PORT=8000 ./node_modules/.bin/nodemon example/server_example.js",
"start": "node example/server_example.js",
"check-coverage": "npm run test && nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"lint": "node_modules/.bin/goodparts ./lib"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/hapi-error.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dwyl/hapi-error/issues"
},
"homepage": "https://github.com/dwyl/hapi-error#readme",
"dependencies": {
"@hapi/hoek": "^10.0.0"
},
"devDependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/good": "^9.0.1",
"@hapi/hapi": "^20.2.2",
"@hapi/validate": "^2.0.0",
"@hapi/vision": "^6.1.0",
"@types/hapi": "^18.0.7",
"decache": "^4.6.1",
"handlebars": "^4.7.7",
"hapi-auth-jwt2": "^10.2.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.18",
"nyc": "15.1.0",
"pre-commit": "^1.2.2",
"tap-nyc": "1.0.3",
"tape": "5.5.3",
"tape-async": "2.3.0"
},
"pre-commit": [
"check-coverage"
],
"keywords": [
"custom",
"customise",
"error",
"friendly",
"hapi",
"hapijs",
"hapi.js",
"helpful",
"html",
"human",
"json",
"message",
"page",
"useful",
"user friendly",
"UX"
],
"author": "dwyl & co",
"nyc": {
"exclude": [
"example/*.js",
"coverage/*",
"test/*.js"
],
"report-dir": "./coverage",
"reporter": [
"lcov",
"text"
],
"cache": false,
"all": true
}
}