package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@hoppscotch/js-sandbox",
  3. "version": "0.3.1",
  4. "description": "JavaScript sandboxes for running external scripts used by Hoppscotch clients",
  5. "main": "./lib/index.js",
  6. "types": "./lib/",
  7. "type": "module",
  8. "engines": {
  9. "node": ">=14",
  10. "pnpm": ">=3"
  11. },
  12. "scripts": {
  13. "demo": "esrun src/demo.ts",
  14. "lint": "eslint --ext .ts,.js --ignore-path .gitignore",
  15. "test": "npx jest",
  16. "build": "npx tsc",
  17. "clean": "npx tsc --build --clean",
  18. "prepublish": "npm run build",
  19. "do-lintfix": "pnpm run lint",
  20. "do-test": "pnpm run test"
  21. },
  22. "keywords": [
  23. "hoppscotch",
  24. "sandbox",
  25. "js-sandbox",
  26. "apis",
  27. "test-runner"
  28. ],
  29. "author": "The Hoppscotch Team <support@hoppscotch.io> (https://hoppscotch.com/)",
  30. "license": "MIT",
  31. "dependencies": {
  32. "fp-ts": "^2.11.3",
  33. "lodash": "^4.17.21",
  34. "quickjs-emscripten": "^0.13.0"
  35. },
  36. "devDependencies": {
  37. "@digitak/esrun": "^1.2.4",
  38. "@relmify/jest-fp-ts": "^1.1.1",
  39. "@types/jest": "^26.0.23",
  40. "@types/lodash": "^4.14.173",
  41. "@types/node": "^15.12.5",
  42. "@typescript-eslint/eslint-plugin": "^4.28.1",
  43. "@typescript-eslint/parser": "^4.28.1",
  44. "eslint": "^7.29.0",
  45. "eslint-config-prettier": "^8.3.0",
  46. "eslint-plugin-prettier": "^3.4.0",
  47. "io-ts": "^2.2.16",
  48. "jest": "^27.0.6",
  49. "prettier": "^2.3.2",
  50. "pretty-quick": "^3.1.1",
  51. "ts-jest": "^27.0.3",
  52. "typescript": "^4.3.5"
  53. },
  54. "jest": {
  55. "setupFilesAfterEnv": [
  56. "@relmify/jest-fp-ts"
  57. ]
  58. }
  59. }