forked from SB-ChetanKorde/postman-to-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.58 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.58 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@stoplight/postman-to-openapi-conversion",
"version": "1.0.3",
"description": "Convert postman collection to OpenAPI spec, Forked for upgrading node engine.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"bin": {
"p2o": "./bin/cli.js"
},
"scripts": {
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix",
"lint:ts": "tsc --build types",
"test:unit": "mocha",
"test:unit-no-only": "npm run test:unit -- --forbid-only",
"test": "nyc npm run test:unit-no-only",
"changelog:all": "conventional-changelog --config ./changelog.config.js -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog --config ./changelog.config.js -i CHANGELOG.md -s",
"prepare": "husky install"
},
"files": [
"bin/*",
"lib/*",
"types/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stoplightio/postman-to-openapi"
},
"keywords": [
"swagger",
"OpenAPI",
"postman",
"collection",
"convert",
"converter",
"transform",
"specification",
"yml"
],
"author": "Stoplight <support@stoplight.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoplightio/postman-to-openapi/issues"
},
"homepage": "https://github.com/stoplightio/postman-to-openapi#readme",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"eslint": "^10.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-node": "^0.0.0",
"eslint-plugin-promise": "^4.3.1",
"execa": "^5.1.1",
"husky": "^7.0.4",
"mocha": "^11.3.0",
"nyc": "^18.0.0",
"typescript": "^4.9.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=14 <=24.15.0"
},
"overrides": {
"diff": "8.0.4",
"serialize-javascript": "7.0.4",
"brace-expansion": "5.0.5",
"minimatch": "9.0.9"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js",
"test/**/*.js",
"bin/**/*.js"
],
"exclude": [],
"reporter": [
"lcovonly",
"html",
"text"
],
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"check-coverage": true
},
"dependencies": {
"commander": "^8.3.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "3.2.0",
"lodash.camelcase": "^4.3.0",
"marked": "^4.2.5",
"mustache": "^4.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}