forked from syroegkin/swagger-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 KB
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
{
"name": "swagger-markdown",
"version": "1.1.2",
"description": "Create markdown API documentation from swagger file",
"main": "index.js",
"scripts": {
"test": "mocha \"tests/**/*.spec.js\" && eslint .",
"prepublish": "babel app --out-dir bin"
},
"bin": {
"swagger-markdown": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syroegkin/swagger-markdown.git"
},
"author": "Sergii Skorokhodov",
"license": "MIT",
"bugs": {
"url": "https://github.com/syroegkin/swagger-markdown/issues"
},
"homepage": "https://github.com/syroegkin/swagger-markdown#readme",
"babel": {
"presets": [
"env"
]
},
"keywords": [
"swagger",
"md",
"markdown"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-env": "^1.6.0",
"chai": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "12.0.2",
"eslint-plugin-import": "^2.3.0",
"mocha": "^3.4.1"
},
"dependencies": {
"argparse": "^1.0.7",
"js-yaml": "^3.8.4"
}
}