2022-03-28 08:26:15 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/cli",
|
2026-01-23 15:50:36 +00:00
|
|
|
"version": "0.30.1",
|
2022-03-28 08:26:15 +00:00
|
|
|
"description": "A CLI to run Hoppscotch test scripts in CI environments.",
|
2022-03-28 08:48:31 +00:00
|
|
|
"homepage": "https://hoppscotch.io",
|
2024-02-05 17:25:05 +00:00
|
|
|
"type": "module",
|
2022-03-28 08:26:15 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"bin": {
|
2024-02-05 17:25:05 +00:00
|
|
|
"hopp": "bin/hopp.js"
|
2022-03-28 08:26:15 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
2023-10-16 12:53:22 +00:00
|
|
|
"engines": {
|
2025-11-24 08:51:29 +00:00
|
|
|
"node": ">=22"
|
2023-10-16 12:53:22 +00:00
|
|
|
},
|
2022-03-28 08:26:15 +00:00
|
|
|
"scripts": {
|
2022-05-03 07:09:56 +00:00
|
|
|
"build": "pnpm exec tsup",
|
|
|
|
|
"dev": "pnpm exec tsup --watch",
|
2022-03-28 08:26:15 +00:00
|
|
|
"debugger": "node debugger.js 9999",
|
2022-05-03 07:09:56 +00:00
|
|
|
"prepublish": "pnpm exec tsup",
|
2022-03-28 08:26:15 +00:00
|
|
|
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
|
2024-07-31 13:40:11 +00:00
|
|
|
"test": "pnpm run build && vitest run",
|
2022-05-11 10:14:19 +00:00
|
|
|
"do-typecheck": "pnpm exec tsc --noEmit",
|
2024-07-31 13:40:11 +00:00
|
|
|
"do-test": "pnpm run test"
|
2022-03-28 08:26:15 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"cli",
|
|
|
|
|
"hoppscotch",
|
|
|
|
|
"hopp-cli"
|
|
|
|
|
],
|
|
|
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
2022-03-28 08:48:31 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/hoppscotch/hoppscotch.git"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/hoppscotch/hoppscotch/issues",
|
|
|
|
|
"email": "support@hoppscotch.io"
|
|
|
|
|
},
|
2022-03-28 08:26:15 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"private": false,
|
2024-02-05 17:25:05 +00:00
|
|
|
"dependencies": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"aws4fetch": "1.0.20",
|
2025-11-24 08:51:29 +00:00
|
|
|
"axios": "1.13.2",
|
2025-11-26 05:36:55 +00:00
|
|
|
"axios-cookiejar-support": "6.0.5",
|
2025-09-26 07:56:42 +00:00
|
|
|
"chalk": "5.6.2",
|
2025-11-24 08:51:29 +00:00
|
|
|
"commander": "14.0.2",
|
|
|
|
|
"isolated-vm": "6.0.2",
|
2024-10-29 07:04:40 +00:00
|
|
|
"js-md5": "0.8.3",
|
2026-01-14 11:36:30 +00:00
|
|
|
"jsonc-parser": "3.3.1",
|
2025-12-19 15:30:22 +00:00
|
|
|
"lodash-es": "4.17.22",
|
2025-08-20 17:34:14 +00:00
|
|
|
"papaparse": "5.5.3",
|
2026-01-21 17:55:40 +00:00
|
|
|
"qs": "6.14.1",
|
2025-11-26 04:22:00 +00:00
|
|
|
"tough-cookie": "6.0.0",
|
2025-08-20 17:34:14 +00:00
|
|
|
"verzod": "0.4.0",
|
2025-12-12 11:28:35 +00:00
|
|
|
"xmlbuilder2": "4.0.3",
|
2025-05-28 10:11:47 +00:00
|
|
|
"zod": "3.25.32"
|
2024-02-05 17:25:05 +00:00
|
|
|
},
|
2022-03-28 08:26:15 +00:00
|
|
|
"devDependencies": {
|
2023-04-09 16:12:25 +00:00
|
|
|
"@hoppscotch/data": "workspace:^",
|
|
|
|
|
"@hoppscotch/js-sandbox": "workspace:^",
|
2024-03-07 18:07:48 +00:00
|
|
|
"@relmify/jest-fp-ts": "2.1.1",
|
|
|
|
|
"@types/lodash-es": "4.17.12",
|
2025-12-19 15:30:22 +00:00
|
|
|
"@types/papaparse": "5.5.2",
|
2025-08-20 17:34:14 +00:00
|
|
|
"@types/qs": "6.14.0",
|
|
|
|
|
"fp-ts": "2.16.11",
|
2026-01-21 17:55:40 +00:00
|
|
|
"prettier": "3.8.0",
|
2024-03-07 18:07:48 +00:00
|
|
|
"qs": "6.11.2",
|
2025-10-22 13:18:20 +00:00
|
|
|
"semver": "7.7.3",
|
2025-11-24 08:51:29 +00:00
|
|
|
"tsup": "8.5.1",
|
2025-10-22 13:18:20 +00:00
|
|
|
"typescript": "5.9.3",
|
2026-01-21 17:55:40 +00:00
|
|
|
"vitest": "4.0.17"
|
2022-03-28 08:26:15 +00:00
|
|
|
}
|
2024-04-22 14:59:03 +00:00
|
|
|
}
|