2020-06-11 23:44:12 +00:00
|
|
|
{
|
2022-10-27 15:55:30 +00:00
|
|
|
"private": true,
|
2020-07-01 23:28:05 +00:00
|
|
|
"name": "insomnia-inso",
|
2023-05-17 14:27:49 +00:00
|
|
|
"version": "3.16.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-10-14 08:27:10 +00:00
|
|
|
"test:bundled-inso": "cross-env ./bin/inso run test \"Another suite\" -e \"OpenAPI env\" --src src/db/fixtures/nedb",
|
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",
|
2022-10-21 14:41:00 +00:00
|
|
|
"package": "esr src/scripts/pkg.ts",
|
2021-10-06 22:01:43 +00:00
|
|
|
"pkg": "pkg .",
|
2022-10-21 14:41:00 +00:00
|
|
|
"postpackage": "esr src/scripts/verify-pkg.ts",
|
2022-10-27 15:55:30 +00:00
|
|
|
"artifacts": "esr src/scripts/artifacts.ts"
|
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-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",
|
2022-10-21 14:41:00 +00:00
|
|
|
"rimraf": "^3.0.2"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-14 11:47:28 +00:00
|
|
|
"@stoplight/spectral-core": "^1.16.0",
|
|
|
|
"@stoplight/spectral-formats": "^1.4.0",
|
|
|
|
"@stoplight/spectral-ruleset-bundler": "^1.5.0",
|
2022-12-15 12:38:22 +00:00
|
|
|
"@stoplight/spectral-rulesets": "^1.14.1",
|
2022-11-15 16:49:31 +00:00
|
|
|
"@stoplight/types": "^13.8.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",
|
2023-05-17 14:27:49 +00:00
|
|
|
"insomnia-plugin-base64": "^3.16.0",
|
|
|
|
"insomnia-plugin-cookie-jar": "^3.16.0",
|
|
|
|
"insomnia-plugin-core-themes": "^3.16.0",
|
|
|
|
"insomnia-plugin-default-headers": "^3.16.0",
|
|
|
|
"insomnia-plugin-file": "^3.16.0",
|
|
|
|
"insomnia-plugin-hash": "^3.16.0",
|
|
|
|
"insomnia-plugin-jsonpath": "^3.16.0",
|
|
|
|
"insomnia-plugin-now": "^3.16.0",
|
|
|
|
"insomnia-plugin-os": "^3.16.0",
|
|
|
|
"insomnia-plugin-prompt": "^3.16.0",
|
|
|
|
"insomnia-plugin-request": "^3.16.0",
|
|
|
|
"insomnia-plugin-response": "^3.16.0",
|
|
|
|
"insomnia-plugin-uuid": "^3.16.0",
|
|
|
|
"insomnia-send-request": "^3.16.0",
|
|
|
|
"insomnia-testing": "^3.16.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",
|
2023-05-17 14:27:49 +00:00
|
|
|
"openapi-2-kong": "^3.16.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"
|
|
|
|
}
|
|
|
|
}
|