package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "tar",
  4. "description": "tar for node",
  5. "version": "4.4.19",
  6. "publishConfig": {
  7. "tag": "v4-legacy"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/npm/node-tar.git"
  12. },
  13. "scripts": {
  14. "test:posix": "tap",
  15. "test:win32": "tap --lines=98 --branches=98 --statements=98 --functions=98",
  16. "test": "node test/fixtures/test.js",
  17. "preversion": "npm test",
  18. "postversion": "npm publish",
  19. "postpublish": "git push origin --follow-tags",
  20. "genparse": "node scripts/generate-parse-fixtures.js",
  21. "bench": "for i in benchmarks/*/*.js; do echo $i; for j in {1..5}; do node $i || break; done; done"
  22. },
  23. "dependencies": {
  24. "chownr": "^1.1.4",
  25. "fs-minipass": "^1.2.7",
  26. "minipass": "^2.9.0",
  27. "minizlib": "^1.3.3",
  28. "mkdirp": "^0.5.5",
  29. "safe-buffer": "^5.2.1",
  30. "yallist": "^3.1.1"
  31. },
  32. "devDependencies": {
  33. "chmodr": "^1.2.0",
  34. "end-of-stream": "^1.4.4",
  35. "events-to-array": "^1.1.2",
  36. "mutate-fs": "^2.1.1",
  37. "require-inject": "^1.4.4",
  38. "rimraf": "^2.7.1",
  39. "tap": "^14.11.0",
  40. "tar-fs": "^1.16.3",
  41. "tar-stream": "^1.6.2"
  42. },
  43. "license": "ISC",
  44. "engines": {
  45. "node": ">=4.5"
  46. },
  47. "files": [
  48. "index.js",
  49. "lib/"
  50. ],
  51. "tap": {
  52. "coverage-map": "map.js",
  53. "check-coverage": true
  54. }
  55. }