-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
39 lines (39 loc) · 867 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
{
"name": "hapi-api-version",
"version": "2.3.1",
"description": "An API versioning plugin for hapi.",
"main": "index.js",
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -v --lint-fix",
"test-coverage": "lab -c -a @hapi/code -r html -o coverage/coverage.html"
},
"repository": {
"type": "git",
"url": "https://github.com/p-meier/hapi-api-version.git"
},
"keywords": [
"hapi",
"hapijs",
"api",
"versioning"
],
"author": "Patrick Meier",
"license": "Apache-2.0",
"engines": {
"node": ">=8.12.0"
},
"peerDependencies": {
"@hapi/hapi": ">=17.x.x"
},
"devDependencies": {
"@hapi/hapi": "18.x.x",
"@hapi/code": "5.x.x",
"@hapi/lab": "19.x.x"
},
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/hoek": "^8.0.2",
"@hapi/joi": "^15.1.0",
"media-type": "^0.3.1"
}
}