forked from Redocly/create-openapi-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 873 Bytes
/
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
{
"name": "create-openapi-repo",
"version": "3.1.3",
"description": "Generator of OpenAPI repository",
"author": {
"name": "Roman Hotsiy",
"email": "[email protected]"
},
"bin": "cli.js",
"keywords": [
"Swagger",
"OpenAPI",
"ReDoc",
"SwaggerUI"
],
"dependencies": {
"chalk": "^2.3.1",
"cross-spawn": "^6.0.5",
"ejs": "^2.6.1",
"inquirer": "^6.2.1",
"js-yaml": "^3.13.1",
"lodash.isequal": "^4.5.0",
"mkdirp": "^0.5.1",
"openapi-template": "^1.0.0",
"slugify": "^1.3.3",
"yargs-parser": "^16.1.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"prettier": "^1.19.1"
},
"repository": "Redocly/create-openapi-repo",
"scripts": {
"lint": "eslint .",
"prettier": "prettier --write lib/**/*.js cli.js"
},
"license": "MIT",
"engines": {
"node": ">=12.0"
}
}