package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "tar-stream",
  3. "version": "1.6.2",
  4. "description": "tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system.",
  5. "author": "Mathias Buus <mathiasbuus@gmail.com>",
  6. "engines": {
  7. "node": ">= 0.8.0"
  8. },
  9. "dependencies": {
  10. "bl": "^1.0.0",
  11. "buffer-alloc": "^1.2.0",
  12. "end-of-stream": "^1.0.0",
  13. "fs-constants": "^1.0.0",
  14. "readable-stream": "^2.3.0",
  15. "to-buffer": "^1.1.1",
  16. "xtend": "^4.0.0"
  17. },
  18. "devDependencies": {
  19. "concat-stream": "^1.6.2",
  20. "standard": "^11.0.1",
  21. "tape": "^4.9.0"
  22. },
  23. "scripts": {
  24. "test": "standard && tape test/extract.js test/pack.js",
  25. "test-all": "standard && tape test/*.js"
  26. },
  27. "keywords": [
  28. "tar",
  29. "tarball",
  30. "parse",
  31. "parser",
  32. "generate",
  33. "generator",
  34. "stream",
  35. "stream2",
  36. "streams",
  37. "streams2",
  38. "streaming",
  39. "pack",
  40. "extract",
  41. "modify"
  42. ],
  43. "bugs": {
  44. "url": "https://github.com/mafintosh/tar-stream/issues"
  45. },
  46. "homepage": "https://github.com/mafintosh/tar-stream",
  47. "main": "index.js",
  48. "files": [
  49. "*.js",
  50. "LICENSE"
  51. ],
  52. "directories": {
  53. "test": "test"
  54. },
  55. "license": "MIT",
  56. "repository": {
  57. "type": "git",
  58. "url": "git+https://github.com/mafintosh/tar-stream.git"
  59. }
  60. }