-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
27 lines (27 loc) · 934 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
{
"name": "openapi-boilerplate",
"version": "0.1.2",
"description": "Multi-file boilerplate for Open API Specification.",
"main": "index.js",
"scripts": {
"build": "redocly bundle src/openapi.yaml --output _build/openapi.yaml",
"test": "npm run build && spectral lint _build/openapi.yaml",
"preview": "npm run build && redocly preview-docs _build/openapi.yaml",
"html": "npm run build && redocly build-docs _build/openapi.yaml --output _build/index.html",
"clean": "rm -r _build",
"deploy": "./ci/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgarcia360/openapi-boilerplate.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dgarcia360/openapi-boilerplate/issues"
},
"homepage": "https://github.com/dgarcia360/openapi-boilerplate#readme",
"dependencies": {
"@redocly/cli": "^1.17.0",
"@stoplight/spectral": "^6.5.0"
}
}