package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.5.1",
  4. "description": "A CLI to run Hoppscotch test scripts in CI environments.",
  5. "homepage": "https://hoppscotch.io",
  6. "main": "dist/index.js",
  7. "bin": {
  8. "hopp": "bin/hopp"
  9. },
  10. "publishConfig": {
  11. "access": "public"
  12. },
  13. "engines": {
  14. "node": ">=18"
  15. },
  16. "scripts": {
  17. "build": "pnpm exec tsup",
  18. "dev": "pnpm exec tsup --watch",
  19. "debugger": "node debugger.js 9999",
  20. "prepublish": "pnpm exec tsup",
  21. "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
  22. "test": "pnpm run build && jest && rm -rf dist",
  23. "do-typecheck": "pnpm exec tsc --noEmit",
  24. "do-test": "pnpm test"
  25. },
  26. "keywords": [
  27. "cli",
  28. "hoppscotch",
  29. "hopp-cli"
  30. ],
  31. "author": "Hoppscotch (support@hoppscotch.io)",
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/hoppscotch/hoppscotch.git"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  38. "email": "support@hoppscotch.io"
  39. },
  40. "license": "MIT",
  41. "private": false,
  42. "devDependencies": {
  43. "@hoppscotch/data": "workspace:^",
  44. "@hoppscotch/js-sandbox": "workspace:^",
  45. "@relmify/jest-fp-ts": "^2.1.1",
  46. "@swc/core": "^1.3.92",
  47. "@types/jest": "^29.5.5",
  48. "@types/lodash": "^4.14.199",
  49. "@types/qs": "^6.9.8",
  50. "axios": "^0.21.4",
  51. "chalk": "^4.1.2",
  52. "commander": "^11.0.0",
  53. "esm": "^3.2.25",
  54. "fp-ts": "^2.16.1",
  55. "io-ts": "^2.2.20",
  56. "jest": "^29.7.0",
  57. "lodash": "^4.17.21",
  58. "prettier": "^3.0.3",
  59. "qs": "^6.11.2",
  60. "ts-jest": "^29.1.1",
  61. "tsup": "^7.2.0",
  62. "typescript": "^5.2.2",
  63. "zod": "^3.22.4"
  64. }
  65. }