package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "tar-fs",
  3. "version": "3.0.5",
  4. "description": "filesystem bindings for tar-stream",
  5. "dependencies": {
  6. "pump": "^3.0.0",
  7. "tar-stream": "^3.1.5"
  8. },
  9. "optionalDependencies": {
  10. "bare-fs": "^2.1.1",
  11. "bare-path": "^2.1.0"
  12. },
  13. "imports": {
  14. "fs": {
  15. "bare": "bare-fs",
  16. "default": "fs"
  17. },
  18. "path": {
  19. "bare": "bare-path",
  20. "default": "path"
  21. }
  22. },
  23. "files": [
  24. "index.js"
  25. ],
  26. "standard": {
  27. "ignore": [
  28. "test/fixtures/**"
  29. ]
  30. },
  31. "keywords": [
  32. "tar",
  33. "fs",
  34. "file",
  35. "tarball",
  36. "directory",
  37. "stream"
  38. ],
  39. "devDependencies": {
  40. "brittle": "^3.1.3",
  41. "rimraf": "^2.6.3",
  42. "standard": "^17.0.1"
  43. },
  44. "scripts": {
  45. "test": "standard && brittle test/index.js"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/mafintosh/tar-fs/issues"
  49. },
  50. "homepage": "https://github.com/mafintosh/tar-fs",
  51. "main": "index.js",
  52. "directories": {
  53. "test": "test"
  54. },
  55. "author": "Mathias Buus",
  56. "license": "MIT",
  57. "repository": {
  58. "type": "git",
  59. "url": "https://github.com/mafintosh/tar-fs.git"
  60. }
  61. }