-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
39
{
"name": "seerbitopenapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash scripts/build.sh",
"redoc": "node index.js bundle specs/external-api.yml -t assets/style/template.hbs &> /dev/null",
"info_slack_success": "bash scripts/notify_slack.sh -s success",
"info_slack_failure": "bash scripts/notify_slack.sh -s failure",
"convert:external:api": "openapi2postmanv2 -s specs/external-api.yml -o pm-collection-converted.json -p -O requestParametersResolution=Example",
"modify:external:api": "node scripts/modify-pm-collection.js -i pm-collection-converted.json -a specs/external-api.yml -o docs/specs/postman-collection.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/seerbit/openapi.git"
},
"keywords": [
"openapi",
"seerbit",
"seerbitaopenapi"
],
"author": "seerbit",
"license": "ISC",
"bugs": {
"url": "https://github.com/seerbit/openapi/issues"
},
"homepage": "https://github.com/seerbit/openapi#readme",
"dependencies": {
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"openapi-to-postmanv2": "^2.0.0",
"redoc": "^2.0.0-rc.40",
"redoc-cli": "^0.9.12",
"yaml": "^1.10.0"
},
"devDependencies": {}
}