-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
35 lines (35 loc) · 858 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
34
35
{
"name": "postman-to-swagger",
"version": "0.1.0",
"description": "Convert Postman 2.1 collections to Swagger 2.0 or OpenAPI 3.0",
"main": "src/index.js",
"bin": {},
"directories": {
"test": "test"
},
"dependencies": {
"json5": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"colors": "^1.4.0",
"diff": "^4.0.2",
"mocha": "^7.2.0",
"yaml": "^1.10.0"
},
"scripts": {
"test": "npx mocha",
"tests:save": "node test/mocha.conf.js save",
"tests:display": "node ./test/mocha.conf.js display"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tecfu/postman-to-swagger.git"
},
"author": "tecfu",
"license": "MIT",
"bugs": {
"url": "https://github.com/tecfu/postman-to-swagger/issues"
},
"homepage": "https://github.com/tecfu/postman-to-swagger#readme"
}