forked from dgarcia360/openapi-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 897 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
{
"name": "my-api",
"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/interserver/my-api.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/interserver/my-api/issues"
},
"homepage": "https://github.com/interserver/my-api#readme",
"dependencies": {
"@redocly/cli": "*",
"vm2": ">=3.9.19",
"@stoplight/spectral": "*"
}
}