This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
{
"name": "@grandlinex/docs-to-openapi",
"version": "0.6.0",
"description": "OpenApiTag to OpenapiSpec",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"OpenApi",
"Swagger",
"Docs",
"TypeDoc",
"GrandLineX"
],
"bin": {
"makeOpenApi": "./dist/cli.js"
},
"scripts": {
"buildprep": "tsc",
"lint": "eslint src",
"test": "jest --runInBand ",
"execTest": "ts-node src/cli.ts",
"execTestHtml": "ts-node src/cli.ts --html",
"execTestHtmlServe": "ts-node src/cli.ts --serve",
"test-converage": "jest --runInBand --ci --collectCoverage --coverageDirectory=\"./coverage\" --reporters=default --reporters=jest-junit",
"makeDocs": "typedoc"
},
"author": {
"name": "Elschnagoo"
},
"license": "BSD-3-Clause",
"dependencies": {
"comment-parser": "^1.2.4",
"express": "^4.17.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-server": "^0.12.1",
"@types/jest": "^27.0.1",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.0",
"jest-junit": "^12.2.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typedoc": "^0.22.3",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/GrandlineX/docs-to-openapi.git"
}
}