-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "joi-to-json",
"version": "4.3.0",
"description": "joi to JSON / OpenAPI Schema Converter",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kenspirit/joi-to-json.git"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "jest"
},
"author": "Ken Chen",
"license": "MIT",
"keywords": [
"joi",
"json-schema",
"json",
"schema",
"openapi",
"swagger",
"oas"
],
"dependencies": {
"combinations": "^1.0.0",
"lodash": "^4.17.21",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@jest/transform": "^29.7.0",
"ajv": "^8.16.0",
"ajv-draft-04": "^1.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"joi-12": "npm:@commercial/joi@^12.1.0",
"joi-13": "npm:joi@^13.7.0",
"joi-14": "npm:joi@^14.3.1",
"joi-15": "npm:@hapi/joi@^15.1.1",
"joi-16": "npm:@hapi/joi@^16.1.8",
"joi-17": "npm:joi@^17.9.2"
},
"types": "index.d.ts",
"files": [
"docs/**/*",
"lib/**/*.js",
"index.js",
"index.d.ts"
]
}