package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.3.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. "scripts": {
  14. "build": "pnpm exec tsup",
  15. "dev": "pnpm exec tsup --watch",
  16. "debugger": "node debugger.js 9999",
  17. "prepublish": "pnpm exec tsup",
  18. "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
  19. "do-typecheck": "pnpm exec tsc --noEmit",
  20. "test": "pnpm run build && jest && rm -rf dist"
  21. },
  22. "keywords": [
  23. "cli",
  24. "hoppscotch",
  25. "hopp-cli"
  26. ],
  27. "author": "Hoppscotch (support@hoppscotch.io)",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/hoppscotch/hoppscotch.git"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  34. "email": "support@hoppscotch.io"
  35. },
  36. "license": "MIT",
  37. "private": false,
  38. "devDependencies": {
  39. "@hoppscotch/data": "workspace:^",
  40. "@hoppscotch/js-sandbox": "workspace:^",
  41. "@relmify/jest-fp-ts": "^2.0.2",
  42. "@swc/core": "^1.2.181",
  43. "@types/axios": "^0.14.0",
  44. "@types/chalk": "^2.2.0",
  45. "@types/commander": "^2.12.2",
  46. "@types/jest": "^27.4.1",
  47. "@types/lodash": "^4.14.181",
  48. "@types/qs": "^6.9.7",
  49. "axios": "^0.21.4",
  50. "chalk": "^4.1.1",
  51. "commander": "^8.0.0",
  52. "esm": "^3.2.25",
  53. "fp-ts": "^2.12.1",
  54. "io-ts": "^2.2.16",
  55. "jest": "^27.5.1",
  56. "lodash": "^4.17.21",
  57. "prettier": "^2.8.4",
  58. "qs": "^6.10.3",
  59. "ts-jest": "^27.1.4",
  60. "tsup": "^5.12.7",
  61. "typescript": "^4.6.4"
  62. }
  63. }