package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "tar-stream",
  3. "version": "2.2.0",
  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. "dependencies": {
  7. "bl": "^4.0.3",
  8. "end-of-stream": "^1.4.1",
  9. "fs-constants": "^1.0.0",
  10. "inherits": "^2.0.3",
  11. "readable-stream": "^3.1.1"
  12. },
  13. "devDependencies": {
  14. "concat-stream": "^2.0.0",
  15. "standard": "^12.0.1",
  16. "tape": "^4.9.2"
  17. },
  18. "scripts": {
  19. "test": "standard && tape test/extract.js test/pack.js",
  20. "test-all": "standard && tape test/*.js"
  21. },
  22. "keywords": [
  23. "tar",
  24. "tarball",
  25. "parse",
  26. "parser",
  27. "generate",
  28. "generator",
  29. "stream",
  30. "stream2",
  31. "streams",
  32. "streams2",
  33. "streaming",
  34. "pack",
  35. "extract",
  36. "modify"
  37. ],
  38. "bugs": {
  39. "url": "https://github.com/mafintosh/tar-stream/issues"
  40. },
  41. "homepage": "https://github.com/mafintosh/tar-stream",
  42. "main": "index.js",
  43. "files": [
  44. "*.js",
  45. "LICENSE"
  46. ],
  47. "directories": {
  48. "test": "test"
  49. },
  50. "license": "MIT",
  51. "repository": {
  52. "type": "git",
  53. "url": "git+https://github.com/mafintosh/tar-stream.git"
  54. },
  55. "engines": {
  56. "node": ">=6"
  57. }
  58. }