-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 933 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
{
"name": "openapigen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"gen": "concerto compile --model ./model/protocol.cto --target openapi --output ./output",
"merge": "node merge.js",
"build-api-docs": "widdershins openapi.json -o index.md",
"build": "npm run merge && npm run build-api-docs && npx openapi-typescript openapi.json --output ./client/typescript/apap.ts && npx reslate build",
"prebuild": "npm run gen",
"lint": "int-openapi openapi.json",
"serve": "npx reslate serve"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@accordproject/concerto-cli": "^3.4.0",
"@ibm-cloud/openapi-ruleset": "^0.44.3",
"ibm-openapi-validator": "^0.96.4",
"openapi-typescript": "^6.1.0",
"reslate": "^3.0.0-5",
"swagger-combine": "^1.4.0",
"widdershins": "^4.0.1"
}
}