forked from sendle/print-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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
55
56
57
58
{
"name": "print-openapi",
"version": "0.0.5",
"description": "Generate a printable HTML file from your OpenAPI spec.",
"author": "Daniel Oakley <[email protected]>",
"repository": "github:sendle/print-openapi",
"license": "MIT",
"keywords": [
"openapi"
],
"files": [
"bin",
"dist",
"LICENSE",
"README.md",
"package.json"
],
"bin": {
"print-openapi": "./bin/print-openapi"
},
"scripts": {
"test": "jest",
"prebuild": "rm -rf ./dist",
"build": "tsc",
"postbuild": "cp -r ./src/assets ./dist/assets"
},
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/jest": "^29.4.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.11.18",
"@types/tmp": "^0.2.3",
"html-validator": "^6.0.1",
"jest": "^29.4.3",
"prettier": "^2.8.3",
"tmp": "^0.2.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@readme/markdown": "^6.59.1",
"@readme/variable": "^15.1.2",
"@tippyjs/react": "^4.2.6",
"cmd-ts": "^0.11.0",
"console-table-printer": "^2.11.1",
"ejs": "^3.1.8",
"highlight.js": "^11.7.0",
"mime-types": "^2.1.35",
"oas": "^20.4.0",
"oas-normalize": "^8.3.1",
"openapi-types": "^12.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"sass": "^1.57.1",
"slugify": "^1.6.5"
}
}