-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1021 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1021 Bytes
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
{
"name": "@s25digital/open-api-starter",
"version": "1.0.0",
"description": "The starter open api documentation project",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"precompile": "npm run clean",
"compile": "swagger-cli bundle src/api.yaml --outfile build/api.yaml --type yaml",
"postcompile": "spectral lint build/api.yaml",
"prebuild": "npm run compile",
"build": "redoc-cli build build/api.yaml --output build/index.html --options.onlyRequiredInSamples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/S25Digital/open-api-starter.git"
},
"keywords": [],
"author": "Simranjeet Singh<simranjeet@s25.digital>",
"license": "MIT",
"bugs": {
"url": "https://github.com/S25Digital/open-api-starter/issues"
},
"homepage": "https://github.com/S25Digital/open-api-starter#readme",
"dependencies": {
"@stoplight/spectral-cli": "^6.15.0",
"redoc-cli": "^0.13.21",
"rimraf": "^3.0.2",
"swagger-cli": "^4.0.4"
}
}