1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "@hoppscotch/cli",
- "version": "0.7.0",
- "description": "A CLI to run Hoppscotch test scripts in CI environments.",
- "homepage": "https://hoppscotch.io",
- "type": "module",
- "main": "dist/index.js",
- "bin": {
- "hopp": "bin/hopp.js"
- },
- "publishConfig": {
- "access": "public"
- },
- "engines": {
- "node": ">=18"
- },
- "scripts": {
- "build": "pnpm exec tsup",
- "dev": "pnpm exec tsup --watch",
- "debugger": "node debugger.js 9999",
- "prepublish": "pnpm exec tsup",
- "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
- "test": "pnpm run build && jest && rm -rf dist",
- "do-typecheck": "pnpm exec tsc --noEmit",
- "do-test": "pnpm test"
- },
- "keywords": [
- "cli",
- "hoppscotch",
- "hopp-cli"
- ],
- "author": "Hoppscotch (support@hoppscotch.io)",
- "repository": {
- "type": "git",
- "url": "https://github.com/hoppscotch/hoppscotch.git"
- },
- "bugs": {
- "url": "https://github.com/hoppscotch/hoppscotch/issues",
- "email": "support@hoppscotch.io"
- },
- "license": "MIT",
- "private": false,
- "dependencies": {
- "axios": "1.6.7",
- "chalk": "5.3.0",
- "commander": "11.1.0",
- "lodash-es": "4.17.21",
- "qs": "6.11.2",
- "verzod": "0.2.2",
- "zod": "3.22.4"
- },
- "devDependencies": {
- "@hoppscotch/data": "workspace:^",
- "@hoppscotch/js-sandbox": "workspace:^",
- "@relmify/jest-fp-ts": "2.1.1",
- "@swc/core": "1.4.2",
- "@types/jest": "29.5.12",
- "@types/lodash-es": "4.17.12",
- "@types/qs": "6.9.12",
- "fp-ts": "2.16.2",
- "jest": "29.7.0",
- "prettier": "3.2.5",
- "qs": "6.11.2",
- "ts-jest": "29.1.2",
- "tsup": "8.0.2",
- "typescript": "5.3.3"
- }
- }
|