-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"name": "hapi-forest",
"version": "0.9.0",
"description": "A hapi plugin to generate routes based on mongoose models",
"main": "forest.js",
"scripts": {
"test": "npm run lint . && nyc --check-coverage --lines 50 ava --serial",
"lint": "eslint --ignore-path .gitignore .",
"lint-staged": "lint-staged",
"example": "nodemon ./example/server.js"
},
"lint-staged": {
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
],
"keywords": [
"hapi-plugin",
"rest",
"crud",
"mongoose",
"route",
"generation"
],
"author": "Filip Weiss <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fiws/hapi-forest"
},
"bugs": {
"url": "https://github.com/fiws/hapi-forest/issues"
},
"license": "MIT",
"dependencies": {
"@hapi/boom": "^9.1.1",
"@hapi/call": "^8.0.1",
"joi": "^17.3.0",
"JSONStream": "^1.3.5",
"lodash": "^4.17.20"
},
"peerDependencies": {
"@hapi/hapi": ">= 20.0.0",
"mongoose": "^8.1.0"
},
"devDependencies": {
"@hapi/hapi": "^20.1.0",
"ava": "^0.17.0",
"blipp": "^3.1.3",
"eslint": "^4.13.1",
"eslint-plugin-ava": "^4.5.1",
"lint-staged": "^6.0.0",
"make-promises-safe": "^1.1.0",
"mongoose": "^8.1.0",
"nodemon": "^2.0.7",
"nyc": "^11.3.0",
"pre-commit": "^1.1.3"
}
}