forked from mrin9/RapiPdf
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "openapi2pdf",
"version": "1.0.0",
"description": "openapi2pdf - Generate PDF from Open API spec",
"contributors": [
"Mrinmoy Majumdar <[email protected]>",
"Stefan Schubert"
],
"repository": {
"type": "git",
"url": "https://github.com/malaupa/openapi2pdf"
},
"license": "MIT",
"keywords": [
"OpenAPI",
"OpenAPI Specification",
"Swagger",
"JSON-Schema",
"API",
"REST",
"documentation",
"swagger",
"pdf",
"swagger pdf",
"openapi pdf"
],
"bin": {
"openapi2pdf": "bin/cli.mjs"
},
"dependencies": {
"html-to-pdfmake": "^2.3.4",
"jsdom": "^17.0.0",
"marked": "^3.0.4",
"pdfmake": "^0.2.2",
"swagger-client": "^3.16.1",
"swagger2openapi": "^7.0.8",
"yargs": "^17.2.0"
},
"scripts": {
"lint": "eslint ./src/**/*.mjs",
"lint-fix": "eslint --fix ./src/**/*.mjs"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.4.1",
"eslint-plugin-prettier": "^4.0.0"
},
"engines": {
"node": ">= 14.17.5",
"npm": ">= 6.14.13"
}
}