-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 994 Bytes
/
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
{
"name": "@hapipal/avocat",
"description": "A utility to convert Objection database errors into Boom HTTP errors",
"version": "3.1.0",
"main": "lib/index.js",
"author": "Daniel COLE <daniel@pixul.fr>",
"repository": {
"type": "git",
"url": "https://github.com/hapipal/avocat.git"
},
"bugs": {
"url": "https://github.com/hapipal/avocat/issues"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=12.x.x"
},
"scripts": {
"test": "lab -f -a @hapi/code -t 100 -L",
"test-cov-html": "lab -f -L -a @hapi/code -r html -o coverage.html",
"coveralls": "lab -r lcov | coveralls"
},
"keywords": [
"objection",
"errors",
"database",
"hapi",
"boom"
],
"license": "MIT",
"dependencies": {
"@hapi/boom": "9.x.x"
},
"devDependencies": {
"objection": "3.x.x",
"coveralls": "3.x.x",
"@hapi/code": "8.x.x",
"@hapi/lab": "24.x.x"
},
"peerDependencies": {
"objection": ">=2 <4"
}
}