forked from Twipped/joi-to-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 806 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
40
41
42
{
"name": "joi-to-swagger",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "tap tests.js",
"lint": "eslint ./"
},
"engines": {
"node": ">=4.2.0"
},
"keywords": [
"joi",
"swagger",
"schema",
"api",
"convert",
"openapi"
],
"author": "Jarvis Badgley <[email protected]> (http://chipersoft.com/)",
"license": "MIT",
"devDependencies": {
"eslint": "~3.12.0",
"eslint-config-chiper": "~2.1.0",
"eslint-plugin-node": "~3.0.5",
"eslint-plugin-promise": "~3.4.0",
"joi": "~10.1.0",
"tap": "~8.0.1",
"tapsuite": "~1.1.0"
},
"peerDependencies": {
"joi": ">= 10"
},
"files": [
"index.js"
],
"dependencies": {
"lodash.find": "^4.0.0",
"lodash.get": "^4.0.2"
}
}