-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
58 lines (58 loc) · 1.55 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
54
55
56
57
58
{
"name": "@openapi-contrib/openapi-schema-to-json-schema",
"version": "0.0.0-development",
"description": "Converts OpenAPI Schema Object to JSON Schema",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"package.json",
"tsconfig.json"
],
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage",
"lint": "eslint . && prettier -c src",
"typecheck": "tsc --noEmit",
"lint:fix": "eslint . --fix && prettier -c src -w"
},
"repository": "https://github.com/openapi-contrib/openapi-schema-to-json-schema",
"author": "OpenAPI Contrib",
"license": "MIT",
"bin": "dist/bin.js",
"dependencies": {
"@types/json-schema": "^7.0.12",
"@types/lodash": "^4.14.195",
"@types/node": "^20.4.1",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"openapi-typescript": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"c8": "^8.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"prettier": {
"printWidth": 120,
"useTabs": false,
"arrowParens": "always",
"trailingComma": "all"
},
"engines": {
"node": ">=14.0.0"
}
}