-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 972 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
29
30
31
{
"name": "oas3-api-shotstack-definition",
"version": "1.0.0",
"description": "Open API Specification 3 (OAS3) definition for the Shotstack API",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -R build",
"build": "./build-docs.sh && ./build-sdks.sh",
"build:docs": "./build-docs.sh",
"build:sdks": "./build-sdks.sh",
"start": "./build-docs.sh && http-server build/docs/ -o -c-1",
"deploy:docs": "aws s3 sync build/docs/ s3://shotstack.io/docs/api"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shotstack/oas-api-definition.git"
},
"author": "Shotstack",
"license": "ISC",
"homepage": "https://github.com/shotstack/oas-api-definition",
"dependencies": {
"js-yaml": "^3.14.1"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"ajv": "^8.11.2",
"http-server": "^14.1.0",
"widdershins": "^4.0.1"
}
}