-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "joi-to-swagger",
"version": "6.2.0",
"description": "Conversion library for transforming joi schema objects into swagger / OpenApi OAS 3.0 schema definitions.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tap tests.js",
"test:coverage:html": "tap --coverage-report=html tests.js",
"test:debug": "tap --node-arg=--inspect --no-timeout tests.js",
"test:ci": "tap --reporter=tap tests.js",
"lint": "eslint ./"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"joi",
"swagger",
"schema",
"api",
"convert",
"openapi"
],
"repository": {
"type": "git",
"url": "https://github.com/Twipped/joi-to-swagger.git"
},
"author": "Jocelyn Badgley <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-twipped": "~3.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"joi": "^17.7.0",
"@joi/date": "^2.1.0",
"tap": "^16.3.2",
"tapsuite": "^2.0.1"
},
"peerDependencies": {
"joi": ">=17.1.1"
},
"files": [
"index.js",
"index.d.ts"
],
"dependencies": {
"lodash": "^4.17.21"
}
}