-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
66 lines (66 loc) · 1.3 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
{
"name": "apidoc-swagger",
"version": "0.3.2",
"description": "Convert api doc json to swagger json",
"author": "Bahman Fakhr Sabahi",
"license": {
"type": "MIT",
"url": "https://github.com/fsbahman/apidoc-swagger/blob/master/README.md/LICENSE"
},
"preferGlobal": true,
"bin": "bin/apidocSwagger.js",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fsbahman/apidoc-swagger.git"
},
"bugs": {
"url": "https://github.com/fsbahman/apidoc-swagger/issues"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful",
"swagger"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"apidoc-core": "0.11.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"nomnom": "^1.8.1",
"path-to-regexp": "^1.2.0",
"winston": "^0.9.0"
},
"devDependencies": {
"jest": "^23.5.0"
},
"scripts": {
"test": "jest"
},
"jshintConfig": {
"camelcase": true,
"curly": false,
"eqeqeq": true,
"forin": true,
"latedef": false,
"newcap": true,
"undef": true,
"unused": true,
"trailing": true,
"node": true,
"browser": true,
"predef": [
"it",
"describe",
"before",
"after"
]
}
}