forked from bautistaj/postman-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 867 Bytes
/
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
{
"name": "postman-to-markdown",
"version": "1.0.7",
"description": "Generate documentation in markdown from postman documentation.",
"main": "./src/index.js",
"scripts": {
"test": "node ./src/test.js ./example/kmk-blog.postman_collection.json"
},
"keywords": [
"postman",
"markdown",
"documentation",
"nodejs"
],
"author": "Jose Luis Campos Bautista <[email protected]>",
"license": "MIT",
"bin": {
"postman-to-markdown": "./bin/global.js"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^4.1.0",
"minimist": "^1.2.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bautistaj/postman-to-markdown.git"
},
"bugs": {
"url": "https://github.com/bautistaj/postman-to-markdown/issues"
},
"homepage": "https://github.com/bautistaj/postman-to-markdown#readme"
}