insomnia/packages/insomnia-importers/package.json

47 lines
1.2 KiB
JSON
Executable File

{
"name": "insomnia-importers",
"version": "3.3.1-beta.0",
"author": "Kong <office@konghq.com>",
"description": "Various data importers for Insomnia",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-importers"
},
"bugs": {
"url": "https://github.com/Kong/insomnia/issues"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"insomnia-import": "bin/cli"
},
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"test": "jest --silent"
},
"dependencies": {
"@apidevtools/swagger-parser": "10.0.2",
"apiconnect-wsdl": "^1.8.31",
"change-case": "^4.1.1",
"commander": "^7.1.0",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.33.0",
"shell-quote": "^1.7.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"@types/ramda": "^0.27.44",
"@types/shell-quote": "^1.7.0",
"@types/yaml": "^1.9.7",
"openapi-types": "^7.0.1"
}
}