-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "openapi-generate-html",
"version": "0.4.2",
"description": "Generate standalone HTML from OpenAPI Specification",
"type": "module",
"bin": {
"openapi-generate-html": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/qazsato/openapi-generate-html.git"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [
"OpenAPI",
"Stoplight",
"Swagger",
"Redoc"
],
"author": "qazsato <[email protected]>",
"license": "MIT",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"commander": "^12.1.0",
"ejs": "^3.1.10",
"inquirer": "^12.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/jest": "^29.5.14",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}