-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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": "openapi-connector-authoring",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"pucc": "index.js"
},
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"build": "swagger-cli bundle src/openapi.yaml --outfile _build/openapi.yaml --type yaml",
"test": "npm run build && spectral lint _build/openapi.yaml",
"preview": "npm run build && redoc-cli serve _build/openapi.yaml --options.onlyRequiredInSamples",
"html": "npm run build && redoc-cli bundle _build/openapi.yaml --output _build/index.html --options.onlyRequiredInSamples",
"clean": "rm -r _build",
"deploy": "./ci/deploy.sh"
},
"dependencies": {
"await-to-js": "^3.0.0",
"axios": "^0.21.1",
"chalk": "^4.1.2",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^2.0.2",
"cli-welcome": "^2.2.2",
"gitignore": "^0.7.0",
"inquirer": "^8.2.0",
"listr": "^0.14.3",
"meow": "^9.0.0",
"ncp": "^2.0.0",
"ora": "^5.4.1",
"pkg-install": "^1.0.0",
"replace-in-files": "^3.0.0",
"util": "^0.12.4"
},
"devDependencies": {
"prettier": "^2.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nk-gears/openapi-connector-authoring.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nk-gears/openapi-connector-authoring/issues"
},
"homepage": "https://github.com/nk-gears/openapi-connector-authoring#readme"
}