forked from Twipped/joi-to-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 941 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
43
44
45
46
47
48
{
"name": "joi-to-swagger",
"version": "3.3.0",
"description": "",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tap tests.js",
"test:travis": "tap --reporter=tap tests.js",
"lint": "eslint ./"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"joi",
"swagger",
"schema",
"api",
"convert",
"openapi"
],
"repository": {
"type": "git",
"url": "https://github.com/Twipped/joi-to-swagger.git"
},
"author": "Jocelyn Badgley <joc@twipped.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-twipped": "~3.3.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"joi": "^14.3.1",
"tap": "^14.7.2",
"tapsuite": "^2.0.1"
},
"peerDependencies": {
"joi": ">= 13"
},
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"lodash": "^4.17.15"
}
}