package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@ndelangen/get-tarball",
  3. "version": "3.0.9",
  4. "description": "Download a tarball (optionally gzipped) to a folder & extract it in the process. Uses the wonderful & super quick tar-fs & gunzip-maybe srcraries.",
  5. "main": "dist/index.js",
  6. "module": "dist/index.mjs",
  7. "types": "dist/index.d.ts",
  8. "scripts": {
  9. "release": "auto shipit",
  10. "test": "jest",
  11. "build": "tsup ./src/index.ts --clean --dts --format cjs,esm --target node16 --external tar-fs,gunzip-maybe,pump",
  12. "watch": "yarn build -- --watch",
  13. "prepublish": "npm run build",
  14. "posttest": "readme package.json > readme.md"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/ndelangen/download-tarball.git"
  19. },
  20. "author": "David Björklund <david.bjorklund@gmail.com>",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/ndelangen/download-tarball/issues"
  24. },
  25. "homepage": "https://github.com/ndelangen/download-tarball#readme",
  26. "devDependencies": {
  27. "@types/gunzip-maybe": "^1.4.0",
  28. "@types/jest": "^29.4.0",
  29. "@types/node": "^16.0.0",
  30. "@types/pump": "^1.1.1",
  31. "@types/tar-fs": "^2.0.1",
  32. "auto": "^10.42.1",
  33. "http-test-server": "^2.0.1",
  34. "jest": "^29.4.3",
  35. "package-json-to-readme": "^2.1.1",
  36. "tar-stream": "^3.0.0",
  37. "tmp": "^0.2.1",
  38. "ts-jest": "^29.0.5",
  39. "tsup": "^6.6.3",
  40. "got": "^12.5.3",
  41. "typescript": "^4.9.5"
  42. },
  43. "dependencies": {
  44. "gunzip-maybe": "^1.4.2",
  45. "pump": "^3.0.0",
  46. "tar-fs": "^2.1.1"
  47. },
  48. "publishConfig": {
  49. "access": "public"
  50. },
  51. "auto": {
  52. "plugins": [
  53. "npm"
  54. ]
  55. }
  56. }