forked from wework/json-schema-to-openapi-schema
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
53 lines (53 loc) · 1.35 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
52
53
{
"name": "@openapi-contrib/json-schema-to-openapi-schema",
"version": "0.0.0-development",
"description": "Converts a JSON Schema to OpenAPI Schema Object",
"bin": "bin/json-schema-to-openapi-schema.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist"
],
"main": "dist/index.js",
"scripts": {
"prepublish": "yarn build",
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "eslint . && prettier -c src",
"lint:fix": "eslint . --fix && prettier -c src -w",
"typecheck": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest --coverage"
},
"repository": "github:openapi-contrib/json-schema-to-openapi-schema",
"author": "OpenAPI Contrib",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.6.2",
"json-schema-walker": "^2.0.0",
"openapi-types": "^12.1.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/compat": "^1.0.3",
"@types/json-schema": "^7.0.15",
"c8": "^9.1.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.0.0",
"nock": "^13.5.4",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0",
"vitest": "^1.6.0"
},
"prettier": {
"singleQuote": true,
"useTabs": true
},
"packageManager": "[email protected]"
}