@readme/postman-to-openapi
Version:
Convert postman collection to OpenAPI spec
71 lines (70 loc) • 1.72 kB
JSON
{
"name": "@readme/postman-to-openapi",
"version": "4.1.0",
"description": "Convert postman collection to OpenAPI spec",
"license": "MIT",
"main": "src/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=14"
},
"keywords": [
"swagger",
"OpenAPI",
"postman",
"collection",
"convert",
"converter",
"transform",
"specification",
"yml"
],
"repository": {
"type": "git",
"url": "git://github.com/readmeio/postman-to-openapi.git"
},
"bugs": {
"url": "https://github.com/readmeio/postman-to-openapi/issues"
},
"homepage": "https://github.com/readmeio/postman-to-openapi#readme",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint **/*.js --fix",
"lint:ts": "tsc --build types",
"prepare": "husky install",
"pretest": "npm run lint",
"release": "npx conventional-changelog-cli -i CHANGELOG.md -s && git add CHANGELOG.md",
"test": "nyc mocha"
},
"dependencies": {
"@readme/http-status-codes": "^7.2.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "3.2.0",
"lodash.camelcase": "^4.3.0",
"marked": "^4.3.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@readme/eslint-config": "^10.5.2",
"chai": "^4.3.7",
"eslint": "^8.39.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"prettier": "@readme/eslint-config/prettier",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}