@bitecraft/yaak2postman
Version:
CLI tool to convert YAAK files to Postman
69 lines • 1.58 kB
JSON
{
"name": "@bitecraft/yaak2postman",
"version": "1.0.3",
"description": "CLI tool to convert YAAK files to Postman",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/BiteCraft/yaak2postman.git"
},
"bugs": {
"url": "https://github.com/BiteCraft/yaak2postman/issues"
},
"homepage": "https://github.com/BiteCraft/yaak2postman#readme",
"bin": {
"yaak2postman": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"start": "bun ./src/cli.ts",
"prepublishOnly": "bun run build",
"prepare": "bun run build",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"keywords": [
"cli",
"postman",
"yaak",
"api-client",
"postman-collection",
"converter",
"api-testing",
"rest-api",
"api-development",
"development-tools",
"api-tools",
"postman-converter",
"yaak-converter",
"api-collection",
"collection-converter",
"api-documentation",
"api-management",
"http-client",
"rest-client",
"api-workspace"
],
"author": "BiteCraft - Vinicius Borges <viniciusborgeis@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.24",
"bun-types": "latest",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^12.0.0"
},
"exports": {
".": {
"import": "./dist/cli.js"
}
}
}