2020-06-11 23:44:12 +00:00
|
|
|
{
|
2020-07-01 23:28:05 +00:00
|
|
|
"name": "insomnia-inso",
|
2022-06-09 08:05:54 +00:00
|
|
|
"version": "3.1.0",
|
2020-07-01 23:52:49 +00:00
|
|
|
"homepage": "https://insomnia.rest",
|
2021-08-20 17:50:41 +00:00
|
|
|
"description": "A CLI for Insomnia - The Collaborative API Design Tool",
|
2020-07-01 23:52:49 +00:00
|
|
|
"author": "Kong <office@konghq.com>",
|
2021-04-22 20:21:22 +00:00
|
|
|
"license": "Apache-2.0",
|
2021-05-13 11:31:33 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Kong/insomnia.git",
|
|
|
|
"directory": "packages/insomnia-inso"
|
|
|
|
},
|
2020-07-08 20:51:44 +00:00
|
|
|
"bugs": {
|
2021-05-13 11:31:33 +00:00
|
|
|
"url": "https://github.com/kong/insomnia/issues"
|
2020-07-08 20:51:44 +00:00
|
|
|
},
|
2021-05-12 06:35:00 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2020-06-11 23:44:12 +00:00
|
|
|
"bin": {
|
|
|
|
"inso": "bin/inso"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-05-12 06:35:00 +00:00
|
|
|
"bootstrap": "npm run build",
|
2021-12-10 23:10:20 +00:00
|
|
|
"lint": "eslint . --ext .js,.ts,.tsx --cache",
|
2021-05-12 06:35:00 +00:00
|
|
|
"lint:fix": "npm run lint -- --fix",
|
|
|
|
"clean": "tsc --build tsconfig.build.json --clean",
|
2021-10-12 21:23:25 +00:00
|
|
|
"postclean": "rimraf dist && rimraf binaries && rimraf compressed && rimraf artifacts",
|
2021-05-12 06:35:00 +00:00
|
|
|
"test": "jest --runInBand",
|
2021-05-13 23:30:44 +00:00
|
|
|
"test:watch": "npm run test -- --watch",
|
|
|
|
"test:snapshots": "npm run build && npm run test -- -u",
|
2022-05-25 13:58:28 +00:00
|
|
|
"build": "concurrently --names source,types \"npm run build:source\" \"npm run build:types\"",
|
|
|
|
"build:source": "esr esbuild.ts",
|
|
|
|
"build:types": "tsc --build tsconfig.build.json",
|
2021-10-06 22:01:43 +00:00
|
|
|
"prebuild:production": "npm run clean",
|
2022-05-25 13:58:28 +00:00
|
|
|
"build:production": "cross-env NODE_ENV=production npm run build",
|
|
|
|
"start": "concurrently --names source,types \"ESBUILD_WATCH=true npm run build:source\" \"npm run build:types -- --watch\"",
|
2021-10-06 22:01:43 +00:00
|
|
|
"prepackage": "npm run build:production",
|
|
|
|
"package": "ts-node src/scripts/pkg.ts",
|
|
|
|
"pkg": "pkg .",
|
2021-10-12 00:10:09 +00:00
|
|
|
"postpackage": "ts-node src/scripts/verify-pkg.ts",
|
2022-04-22 11:37:56 +00:00
|
|
|
"artifacts": "ts-node src/scripts/artifacts.ts",
|
|
|
|
"prepublishOnly": "npm run build:production"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-18 21:27:31 +00:00
|
|
|
"@jest/globals": "^28.1.0",
|
2021-05-12 06:35:00 +00:00
|
|
|
"@types/mkdirp": "^1.0.1",
|
|
|
|
"@types/nedb": "^1.8.11",
|
2022-03-07 13:10:35 +00:00
|
|
|
"@types/node": "^17.0.21",
|
2021-10-06 22:01:43 +00:00
|
|
|
"@types/ramda": "^0.27.44",
|
2021-05-12 06:35:00 +00:00
|
|
|
"@types/rimraf": "^3.0.0",
|
|
|
|
"@types/yaml": "^1.9.7",
|
2022-05-25 13:58:28 +00:00
|
|
|
"concurrently": "^7.0.0",
|
|
|
|
"cross-env": "^7.0.3",
|
|
|
|
"esbuild": "^0.14.29",
|
|
|
|
"esbuild-node-externals": "^1.4.1",
|
|
|
|
"esbuild-runner": "^2.2.1",
|
2021-05-12 06:35:00 +00:00
|
|
|
"execa": "^5.0.0",
|
2020-06-11 23:44:12 +00:00
|
|
|
"get-bin-path": "^5.1.0",
|
2022-05-17 12:18:06 +00:00
|
|
|
"jest": "^28.1.0",
|
2022-05-18 21:27:31 +00:00
|
|
|
"jest-mock": "^28.0.2",
|
2021-10-06 22:01:43 +00:00
|
|
|
"pkg": "^5.3.2",
|
2020-06-30 19:36:15 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-05-25 13:58:28 +00:00
|
|
|
"ts-node": "^9.1.1"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-06-03 10:44:54 +00:00
|
|
|
"@stoplight/spectral-core": "^1.12.2",
|
|
|
|
"@stoplight/spectral-formats": "^1.2.0",
|
|
|
|
"@stoplight/spectral-rulesets": "^1.9.0",
|
2022-01-25 14:50:46 +00:00
|
|
|
"axios": "^0.21.2",
|
2020-06-11 23:44:12 +00:00
|
|
|
"commander": "^5.1.0",
|
2020-08-06 20:45:29 +00:00
|
|
|
"consola": "^2.15.0",
|
2020-07-28 23:47:36 +00:00
|
|
|
"cosmiconfig": "^6.0.0",
|
2021-05-12 06:35:00 +00:00
|
|
|
"enquirer": "^2.3.6",
|
2022-06-09 08:05:54 +00:00
|
|
|
"insomnia-plugin-base64": "3.1.0",
|
|
|
|
"insomnia-plugin-cookie-jar": "3.1.0",
|
|
|
|
"insomnia-plugin-core-themes": "3.1.0",
|
|
|
|
"insomnia-plugin-file": "3.1.0",
|
|
|
|
"insomnia-plugin-hash": "3.1.0",
|
|
|
|
"insomnia-plugin-jsonpath": "3.1.0",
|
|
|
|
"insomnia-plugin-now": "3.1.0",
|
|
|
|
"insomnia-plugin-os": "3.1.0",
|
|
|
|
"insomnia-plugin-prompt": "3.1.0",
|
|
|
|
"insomnia-plugin-request": "3.1.0",
|
|
|
|
"insomnia-plugin-response": "3.1.0",
|
|
|
|
"insomnia-plugin-uuid": "3.1.0",
|
|
|
|
"insomnia-send-request": "3.1.0",
|
|
|
|
"insomnia-testing": "3.1.0",
|
2020-07-15 23:51:15 +00:00
|
|
|
"mkdirp": "^1.0.4",
|
2020-06-30 06:27:21 +00:00
|
|
|
"nedb": "^1.8.0",
|
2022-06-09 08:05:54 +00:00
|
|
|
"openapi-2-kong": "3.1.0",
|
2021-10-06 22:01:43 +00:00
|
|
|
"ramda": "^0.27.1",
|
|
|
|
"ramda-adjunct": "^2.33.0",
|
2020-07-28 23:47:36 +00:00
|
|
|
"string-argv": "^0.3.1",
|
2020-06-11 23:44:12 +00:00
|
|
|
"yaml": "^1.10.0"
|
|
|
|
}
|
|
|
|
}
|