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",
|
2024-01-18 21:40:54 +00:00
|
|
|
"version": "8.6.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",
|
2023-08-09 22:14:16 +00:00
|
|
|
"url": "git+https://github.com/Kong/insomnia.git",
|
2021-05-13 11:31:33 +00:00
|
|
|
"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-12-10 23:10:20 +00:00
|
|
|
"lint": "eslint . --ext .js,.ts,.tsx --cache",
|
2023-08-13 10:30:04 +00:00
|
|
|
"test": "esr esbuild.ts jest",
|
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",
|
2023-08-09 22:14:16 +00:00
|
|
|
"type-check": "tsc --noEmit --project tsconfig.json",
|
|
|
|
"build": "esr esbuild.ts",
|
2023-07-07 18:20:39 +00:00
|
|
|
"build:production": "cross-env NODE_ENV=production esr esbuild.ts",
|
2023-08-09 22:14:16 +00:00
|
|
|
"start": "ESBUILD_WATCH=true esr esbuild.ts",
|
2021-10-06 22:01:43 +00:00
|
|
|
"prepackage": "npm run build:production",
|
2023-06-29 15:25:46 +00:00
|
|
|
"package": "npx -y pkg@5.8.1 . --output binaries/inso --targets host",
|
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",
|
2024-01-04 15:08:28 +00:00
|
|
|
"@types/nedb": "^1.8.16",
|
2023-07-05 08:57:13 +00:00
|
|
|
"@types/node": "^20.3.3",
|
2023-07-12 10:14:18 +00:00
|
|
|
"concurrently": "^8.2.0",
|
2022-05-25 13:58:28 +00:00
|
|
|
"cross-env": "^7.0.3",
|
2023-05-30 09:56:51 +00:00
|
|
|
"esbuild": "^0.16.0",
|
2023-07-12 10:14:18 +00:00
|
|
|
"esbuild-node-externals": "^1.8.0",
|
2023-05-30 09:56:51 +00:00
|
|
|
"esbuild-runner": "^2.2.2",
|
2021-05-12 06:35:00 +00:00
|
|
|
"execa": "^5.0.0",
|
2022-05-17 12:18:06 +00:00
|
|
|
"jest": "^28.1.0",
|
2023-08-09 22:14:16 +00:00
|
|
|
"jest-mock": "^28.0.2"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-12 10:14:18 +00:00
|
|
|
"@stoplight/spectral-core": "^1.18.2",
|
|
|
|
"@stoplight/spectral-formats": "^1.5.0",
|
|
|
|
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
|
|
|
|
"@stoplight/spectral-rulesets": "^1.16.0",
|
|
|
|
"@stoplight/types": "^13.15.0",
|
2024-01-05 09:57:02 +00:00
|
|
|
"axios": "^1.6.3",
|
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-08-09 22:14:16 +00:00
|
|
|
"insomnia-send-request": "../insomnia-send-request",
|
2024-01-04 15:08:28 +00:00
|
|
|
"@seald-io/nedb": "^4.0.3",
|
2023-07-12 10:14:18 +00:00
|
|
|
"string-argv": "^0.3.2",
|
|
|
|
"yaml": "^2.3.1"
|
2020-06-11 23:44:12 +00:00
|
|
|
}
|
|
|
|
}
|