forked from asyncapi/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "asyncapi-generator",
"version": "0.22.1",
"description": "The AsyncAPI generator. It can generate documentation, code, anything!",
"main": "./lib/generator.js",
"bin": {
"asyncapi-generator": "./cli.js",
"ag": "./cli.js"
},
"scripts": {
"docs": "jsdoc2md lib/generator.js > API.md"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/asyncapi/generator/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/generator.git"
},
"keywords": [
"asyncapi",
"documentation",
"generator",
"markdown"
],
"author": {
"name": "Fran Mendez",
"email": "[email protected]"
},
"homepage": "https://github.com/asyncapi/generator",
"dependencies": {
"ajv": "^6.10.2",
"asyncapi": "^2.2.0",
"asyncapi-parser": "^0.11.1",
"commander": "^2.12.2",
"fs.extra": "^1.3.2",
"jmespath": "^0.15.0",
"js-yaml": "^3.13.1",
"json-schema-ref-parser": "^5.1.0",
"klaw-sync": "^6.0.0",
"lodash": "^4.17.15",
"markdown-it": "^8.4.1",
"minimatch": "^3.0.4",
"nunjucks": "^3.2.0",
"openapi-sampler": "^1.0.0-beta.9"
},
"devDependencies": {
"jsdoc-to-markdown": "^5.0.0"
}
}