-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 855 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-auto-route",
"version": "3.2.0",
"description": "Autoloads hapi routes",
"author": "Sitraka Ratsimba <[email protected]>",
"main": "index.js",
"keywords": [
"hapi",
"route",
"autoload"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cooxe/hapi-auto-route.git"
},
"bugs": "https://github.com/cooxe/hapi-auto-route/issues",
"license": "MIT",
"scripts": {
"test": "lab --coverage --lint",
"html-coverage": "lab --reporter html --output coverage.html"
},
"files": [
"LICENSE",
"lib/",
"index.js",
"README.md"
],
"devDependencies": {
"@hapi/code": "9.x.x",
"@hapi/hapi": "21.x.x",
"@hapi/eslint-plugin": "6.x.x",
"@hapi/lab": "25.x.x"
},
"dependencies": {
"@hapi/hoek": "11.x.x",
"joi": "17.x.x",
"glob": "7.x.x"
}
}