forked from syroegkin/swagger-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "swagger-markdown",
"version": "1.1.5",
"description": "Create markdown API documentation from swagger file",
"main": "index.js",
"scripts": {
"test": "npm run test:app && npm run test:lint",
"test:app": "mocha \"tests/**/*.spec.js\"",
"test:lint": "eslint .",
"build": "babel app --out-dir bin",
"prepublish": "npm run build"
},
"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.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0"
},
"dependencies": {
"argparse": "^1.0.10",
"js-yaml": "^3.12.0"
}
}