-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.33 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.33 KB
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
{
"name": "reezonly-space-openapi",
"version": "1.0.0",
"description": "OpenAPI specification for Reezonly Space Platform API",
"main": "index.js",
"scripts": {
"lint": "redocly lint space-platform-api.yaml",
"build:modules": "cd tools && npm run build",
"bundle": "npm run build:modules && redocly bundle space-platform-api.yaml -o space-platform-api.bundle.tmp.yaml && mv space-platform-api.bundle.tmp.yaml space-platform-api.yaml && mkdir -p bundles && ln -sf ../space-platform-api.yaml bundles/complete-api.yaml",
"build-docs": "npm run bundle && redocly build-docs space-platform-api.yaml -o docs/index.html && node tools/add-try-link.js",
"watch": "nodemon --watch specs --ext yaml --exec \"npm run bundle\"",
"ci:spec": "npm run lint && npm run bundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reezonly/space-openapi.git"
},
"keywords": [
"openapi",
"api",
"documentation",
"reezonly",
"space",
"lms"
],
"author": "Reezonly",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/reezonly/space-openapi/issues"
},
"homepage": "https://github.com/reezonly/space-openapi#readme",
"devDependencies": {
"@redocly/cli": "^2.11.1",
"nodemon": "^3.1.7"
}
}