insomnia/packages/insomnia-importers/package.json

46 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "insomnia-importers",
2021-10-21 09:15:57 +00:00
"version": "2.4.0-alpha.1",
"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": {
2021-05-19 06:49:45 +00:00
"insomnia-import": "bin/cli"
},
"scripts": {
"bootstrap": "npm run build",
"lint": "eslint . --ext .js,.ts,.tsx",
"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": {
2021-05-18 21:21:52 +00:00
"@apidevtools/swagger-parser": "10.0.2",
"apiconnect-wsdl": "^1.8.31",
"change-case": "^4.1.1",
"commander": "^7.1.0",
"lodash": "^4.17.15",
"shell-quote": "^1.7.2",
"yaml": "^1.10.0"
2019-11-22 16:15:46 +00:00
},
"gitHead": "e46bf021cf4b4379e31d2b2d9025d476d6839fa1",
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/shell-quote": "^1.7.0",
"@types/yaml": "^1.9.7",
"openapi-types": "^7.0.1"
}
}