-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "convert-openapi-to-postman",
"version": "2.0.0",
"description": "Converts OpenAPI descriptions to a Postman collection",
"source": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "parcel build"
},
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"author": "janc@kentico.com",
"license": "MIT",
"dependencies": {
"@octokit/request-error": "3.0.3",
"@types/express": "4.17.17",
"@types/fs-extra": "11.0.1",
"@types/morgan": "1.9.4",
"@types/node-fetch": "2.6.2",
"@types/webpack-dev-middleware": "5.3.0",
"body-parser": "1.20.2",
"connect-timeout": "1.9.0",
"dotenv": "16.0.3",
"express": "4.18.2",
"fs-extra": "11.1.0",
"morgan": "1.10.0",
"node-fetch": "3.3.0",
"octokit": "2.0.14",
"openapi-to-postmanv2": "4.20.0"
},
"devDependencies": {
"assert": "2.0.0",
"browserify-zlib": "0.2.0",
"buffer": "6.0.3",
"crypto-browserify": "3.12.0",
"parcel": "2.8.3",
"process": "0.11.10",
"querystring-es3": "0.2.1",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"string_decoder": "1.3.0",
"url": "0.11.0",
"util": "0.12.5"
}
}