-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rest-hapi-gen",
"version": "3.1.2",
"description": "RESTHapi Gen is a @hapijs/hapi plugin which generates a CRUD RESTful API from a given @hapijs/joi model.",
"keywords": [
"hapi",
"hapi-plugin",
"joi",
"api",
"restful",
"rest"
],
"main": "lib/index.js",
"scripts": {
"release": "release-it --ci",
"start": "nodemon dev/app.js",
"test": "jest --watchAll --coverage",
"test:ci": "jest --coverage --coverageReporters=text-summary"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"node_modules/*"
],
"delay": "2500"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
".*\\.mother\\.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dev/",
".*\\.mother\\.js"
],
"watchPathIgnorePatterns": [
"/node_modules/",
"/dev/"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
]
},
"author": "Daniel Arteaga <[email protected]> (https://darteaga.com)",
"license": "MIT",
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/wreck": "^18.0.0",
"@hapi/yar": "^11.0.0",
"joi": "^17.7.0",
"joigoose": "^8.0.2",
"keycloak-connect": "^21.0.1",
"lodash": "^4.17.21",
"mongoose": "^6.7.2",
"pluralize": "^8.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@hapi/hapi": "^21.0.0",
"@hapi/hoek": "^10.0.1",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"@release-it/bumper": "^4.0.0",
"@release-it/conventional-changelog": "^5.1.1",
"hapi-swagger": "^16.0.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"release-it": "^15.5.0"
}
}