package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "unbzip2-stream",
  3. "version": "1.4.3",
  4. "description": "streaming unbzip2 implementation in pure javascript for node and browsers",
  5. "keywords": [
  6. "bzip",
  7. "bzip2",
  8. "bz2",
  9. "stream",
  10. "streaming",
  11. "decompress",
  12. "through"
  13. ],
  14. "scripts": {
  15. "prepare": "mkdir -p dist && browserify -s unbzip2Stream index.js | uglifyjs > dist/unbzip2-stream.min.js",
  16. "browser-test": "browserify -t brfs test/simple.js | tape-run",
  17. "prepare-long-test": "head -c 104857600 < /dev/urandom | tee test/fixtures/vmlinux.bin | bzip2 > test/fixtures/vmlinux.bin.bz2",
  18. "long-test": "tape test/extra/long.js",
  19. "download-test": "beefy test/browser/long.js --open -- -t brfs",
  20. "test": "tape test/*.js"
  21. },
  22. "author": "Jan Bölsche <jan@lagomorph.de>",
  23. "repository": {
  24. "url": "https://github.com/regular/unbzip2-stream.git",
  25. "type": "git"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/regular/unbzip2-stream/issues"
  29. },
  30. "files": [
  31. "index.js",
  32. "lib",
  33. "dist/unbzip2-stream.min.js"
  34. ],
  35. "main": "index.js",
  36. "devDependencies": {
  37. "beefy": "^2.1.8",
  38. "brfs": "^1.2.0",
  39. "browserify": "^16.2.3",
  40. "concat-stream": "^1.4.7",
  41. "stream-equal": "^1.1.1",
  42. "tape": "^4.9.2",
  43. "tape-run": "^4.0.0",
  44. "uglify-js": "^3.0.10"
  45. },
  46. "dependencies": {
  47. "buffer": "^5.2.1",
  48. "through": "^2.3.8"
  49. },
  50. "license": "MIT"
  51. }