-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.17 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@synx-ai/oas3-mdx",
"version": "0.4.7",
"description": "Convert OpenAPI spec to Markdown files.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"templates"
],
"bin": {
"oas3-mdx": "dist/cli.js"
},
"scripts": {
"example": "tsc && node dist/cli.js --spec example/petstore.json --o build/",
"build": "tsc",
"pretty": "yarn prettier --write src/*.ts",
"prepare": "yarn pretty && yarn lint && yarn build",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest --config .jest.json",
"prepublishOnly": "pinst --disable && npm test && npm run lint",
"preversion": "yarn prepare",
"version": "git add -A .",
"postversion": "",
"deploy": "npm publish --access public",
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synx-ai/oas3-mdx"
},
"bugs": {
"url": "https://github.com/synx-ai/oas3-mdx/issues"
},
"baseUrl": "/oas3-mdx/",
"keywords": [
"oas3",
"openapi",
"openapi3",
"codegen",
"docgen",
"generator",
"documentation",
"markdown",
"mdx"
],
"author": {
"name": "Carlos Rivera",
"email": "[email protected]",
"url": "https://github.com/carlosrivera"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.1.1",
"jest": "^26.6.3",
"pinst": "^2.1.6",
"speccy": "^0.11.0",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
},
"dependencies": {
"add": "^2.0.6",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"json-schema-ref-parser": "^9.0.7",
"lodash": "^4.17.21",
"oas-validator": "^5.0.5",
"openapi-sampler": "^1.0.0-beta.18",
"openapi-snippet": "^0.9.2",
"prettier": "^2.2.1",
"xml-js": "^1.6.11",
"yargs": "^16.2.0",
"yarn": "^1.22.10"
}
}