mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
b07cd1cf16
* Upgrade Electron from 9.3.5 to 11.2.3. * bump version * update preid to alpha * version packages lib@2.3.1-alpha.0 * Downgrade electron-builder to 22.11.3. We tried to upgrade electron-builder to 22.11.7, but this fails because electron-builder 22.11.4 introduces imports into fs/promises. This module is only available in Node 14+, so we have to stick to 22.11.3 until we update to Electron 12. * Revert npm script changes from alpha release. Co-authored-by: Opender Singh <opender.singh@konghq.com>
46 lines
1.2 KiB
JSON
Executable File
46 lines
1.2 KiB
JSON
Executable File
{
|
|
"name": "insomnia-importers",
|
|
"version": "2.3.1-alpha.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",
|
|
"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",
|
|
"lodash": "^4.17.15",
|
|
"shell-quote": "^1.7.2",
|
|
"yaml": "^1.10.0"
|
|
},
|
|
"gitHead": "e46bf021cf4b4379e31d2b2d9025d476d6839fa1",
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/shell-quote": "^1.7.0",
|
|
"@types/yaml": "^1.9.7",
|
|
"openapi-types": "^7.0.1"
|
|
}
|
|
}
|