-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "swagger-to-jsdoc",
"version": "1.1.5",
"description": "parse swagger-doc into js-doc, generate api service and mock data files",
"main": "index.js",
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"test": "jest"
},
"bin": {
"generate-doc": "bin/generate.js",
"rename-enum": "bin/renameEnum.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexxyzeng/swagger-js-doc.git"
},
"keywords": [
"swagger",
"js-doc",
"mock",
"data"
],
"author": "alex",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexxyzeng/swagger-js-doc/issues"
},
"homepage": "https://github.com/alexxyzeng/swagger-js-doc#readme",
"dependencies": {
"chalk": "^4.1.0",
"md5": "^2.2.1",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^25.2.3",
"@types/md5": "^2.2.0",
"@types/node-fetch": "^2.5.7",
"eslint": "6.7.2",
"eslint-plugin-node": "^11.1.0",
"jest": "26.0.1"
}
}