-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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
{
"name": "wurst",
"description": "directory based autoloader for hapi.js routes",
"keywords": [
"hapi",
"api",
"restful",
"rest",
"routes",
"autoloader",
"auto",
"loader"
],
"version": "5.0.4",
"license": "MIT",
"author": {
"name": "Felix Heck",
"email": "[email protected]",
"url": "https://whotheheck.de"
},
"repository": {
"type": "git",
"url": "https://github.com/felixheck/wurst.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/felixheck/wurst/issues"
},
"main": "./index.js",
"scripts": {
"start": "npm test -- -w",
"lint": "standard",
"test": "nyc --check-coverage --lines 60 ava -s test/*.spec.js --timeout=1m",
"coverage": "nyc report --reporter=lcov"
},
"devDependencies": {
"@hapi/hapi": ">=18.4.0",
"ava": "^3.15.0",
"sinon": "^11.1.2",
"nyc": "^15.1.0",
"standard": "^16.0.3"
},
"dependencies": {
"joi": "^17.4.2",
"glob": "^7.1.7",
"glob-promise": "^4.2.0"
},
"peerDependencies": {
"@hapi/hapi": ">=18.4.0"
},
"engines": {
"node": ">=12",
"npm": ">=6"
}
}