package.json 927 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "tar-stream",
  3. "version": "3.1.7",
  4. "description": "tar-stream is a streaming tar parser and generator and nothing else. It operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system.",
  5. "main": "index.js",
  6. "files": [
  7. "*.js"
  8. ],
  9. "browser": {
  10. "fs": false
  11. },
  12. "scripts": {
  13. "test": "standard && brittle test/*.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/mafintosh/tar-stream.git"
  18. },
  19. "author": "Mathias Buus <mathiasbuus@gmail.com>",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/mafintosh/tar-stream/issues"
  23. },
  24. "homepage": "https://github.com/mafintosh/tar-stream",
  25. "dependencies": {
  26. "b4a": "^1.6.4",
  27. "fast-fifo": "^1.2.0",
  28. "streamx": "^2.15.0"
  29. },
  30. "devDependencies": {
  31. "brittle": "^3.3.2",
  32. "concat-stream": "^2.0.0",
  33. "standard": "^17.0.1"
  34. }
  35. }