-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 Bytes
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
{
"name": "penify-oapi-codegen",
"version": "1.0.3",
"description": "A JavaScript library to convert OpenAPI schema to Postman collection and generate sample code.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"bin": {
"penify-oapi-codegen": "src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"openapi-to-postmanv2": "4.21.0",
"postman-code-generators": "^1.0.2",
"postman-collection": "^4.4.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"openapi-to-postmanv2": "4.21.0"
}
}