2022-03-28 08:26:15 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/cli",
|
2025-10-27 17:36:27 +00:00
|
|
|
"version": "0.26.0",
|
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": {
|
2024-12-02 16:19:46 +00:00
|
|
|
"node": ">=20"
|
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-09-24 10:52:31 +00:00
|
|
|
"axios": "1.12.2",
|
2025-09-26 07:56:42 +00:00
|
|
|
"chalk": "5.6.2",
|
|
|
|
|
"commander": "14.0.1",
|
2025-08-20 17:34:14 +00:00
|
|
|
"isolated-vm": "5.0.4",
|
2024-10-29 07:04:40 +00:00
|
|
|
"js-md5": "0.8.3",
|
2024-03-07 18:07:48 +00:00
|
|
|
"lodash-es": "4.17.21",
|
2025-08-20 17:34:14 +00:00
|
|
|
"papaparse": "5.5.3",
|
|
|
|
|
"qs": "6.14.0",
|
|
|
|
|
"verzod": "0.4.0",
|
2024-07-26 17:26:58 +00:00
|
|
|
"xmlbuilder2": "3.1.1",
|
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-08-20 17:34:14 +00:00
|
|
|
"@types/papaparse": "5.3.16",
|
|
|
|
|
"@types/qs": "6.14.0",
|
|
|
|
|
"fp-ts": "2.16.11",
|
|
|
|
|
"prettier": "3.6.2",
|
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-08-20 17:34:14 +00:00
|
|
|
"tsup": "8.5.0",
|
2025-10-22 13:18:20 +00:00
|
|
|
"typescript": "5.9.3",
|
2025-08-20 17:34:14 +00:00
|
|
|
"vitest": "3.2.4"
|
2022-03-28 08:26:15 +00:00
|
|
|
}
|
2024-04-22 14:59:03 +00:00
|
|
|
}
|