-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.31 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
{
"name": "@openeo/api",
"version": "1.3.0",
"author": "openEO Consortium",
"license": "Apache-2.0",
"description": "The openEO API specification.",
"homepage": "https://openeo.org",
"bugs": {
"url": "https://github.com/Open-EO/openeo-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Open-EO/openeo-api.git"
},
"devDependencies": {
"@stoplight/spectral-cli": "^6.15.0",
"@redocly/cli": "^2.0.8",
"http-server": "^14.1.1"
},
"scripts": {
"start": "npm run build && http-server -o index.html",
"build": "npm run build:core && npm run build:commercial-data && npm run build:processing-parameters && npm run build:workspaces",
"build:core": "redocly build-docs core --config=.redocly.yaml -o=index.html",
"build:commercial-data": "redocly build-docs commercial-data --config=.redocly.yaml -o=commercial-data.html",
"build:processing-parameters": "redocly build-docs processing-parameters --config=.redocly.yaml -o=processing-parameters.html",
"build:workspaces": "redocly build-docs workspaces --config=.redocly.yaml -o=workspaces.html",
"test": "npm run spectral-lint && npm run redocly-lint",
"spectral-lint": "spectral lint openapi.yaml extensions/*/openapi.yaml",
"redocly-lint": "redocly lint --config=.redocly.yaml"
}
}