-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
40
41
{
"name": "@bitacode/apispecmd-ts",
"version": "0.1.2",
"description": "Convert your OpenAPI 3.0 specs to markdown",
"homepage": "https://github.com/ccarcaci/apispecmd-ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"start": "tsc --project tsconfig.build.json; INPUT_SPEC=openapi/examples/petstore.yaml OUTPUT_MARKDOWN=openapi/examples/output/petstore.md OUTPUT_PDF=openapi/examples/output/petstore.pdf node build/index.js",
"test": "jest --passWithNoTests --runInBand"
},
"author": "ccarcaci <[email protected]> (https://github.com/ccarcaci)",
"repository": "github:ccarcaci/apispecmd-ts",
"bugs": {
"url": "https://github.com/ccarcaci/apispecmd-ts/issues"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/marked": "^2.0.4",
"@types/node": "^16.4.11",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"md-to-pdf": "^4.0.0",
"openapi-types": "^9.1.0",
"winston": "^3.3.3"
},
"bin": {
"apispecmd-ts": "./bin/apispecmd-ts"
},
"files": [
"build",
"bin"
],
"license": "MIT"
}