forked from richardgirges/express-joi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 836 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
{
"name": "express-joi-swagger",
"version": "0.0.1-alpha.6",
"description": "Simple non-intrusive library for validating Express routes with Joi and auto-generating Swagger documentation.",
"main": "./src/index.js",
"repository": "[email protected]:richardgirges/express-joi-swagger.git",
"license": "MIT",
"scripts": {
"lint": "eslint ./",
"format": "eslint --fix ./",
"create-release": "release-it --src.tag",
"test": "jest --forceExit"
},
"dependencies": {
"express": "^4.16.4",
"http-status": "^1.0.1",
"joi": "^13.1.2",
"joi-to-swagger": "^2.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-google": "^0.9.1",
"jest": "^23.6.0",
"release-it": "^7.2.1",
"supertest": "^3.3.0"
}
}