package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "tar",
  4. "description": "tar for node",
  5. "version": "6.1.11",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/node-tar.git"
  9. },
  10. "scripts": {
  11. "test:posix": "tap",
  12. "test:win32": "tap --lines=98 --branches=98 --statements=98 --functions=98",
  13. "test": "node test/fixtures/test.js",
  14. "posttest": "npm run lint",
  15. "eslint": "eslint",
  16. "lint": "npm run eslint -- test lib",
  17. "lintfix": "npm run lint -- --fix",
  18. "preversion": "npm test",
  19. "postversion": "npm publish",
  20. "prepublishOnly": "git push origin --follow-tags",
  21. "genparse": "node scripts/generate-parse-fixtures.js",
  22. "bench": "for i in benchmarks/*/*.js; do echo $i; for j in {1..5}; do node $i || break; done; done"
  23. },
  24. "dependencies": {
  25. "chownr": "^2.0.0",
  26. "fs-minipass": "^2.0.0",
  27. "minipass": "^3.0.0",
  28. "minizlib": "^2.1.1",
  29. "mkdirp": "^1.0.3",
  30. "yallist": "^4.0.0"
  31. },
  32. "devDependencies": {
  33. "chmodr": "^1.2.0",
  34. "end-of-stream": "^1.4.3",
  35. "eslint": "^7.17.0",
  36. "eslint-plugin-import": "^2.22.1",
  37. "eslint-plugin-node": "^11.1.0",
  38. "eslint-plugin-promise": "^4.2.1",
  39. "eslint-plugin-standard": "^5.0.0",
  40. "events-to-array": "^1.1.2",
  41. "mutate-fs": "^2.1.1",
  42. "rimraf": "^2.7.1",
  43. "tap": "^15.0.9",
  44. "tar-fs": "^1.16.3",
  45. "tar-stream": "^1.6.2"
  46. },
  47. "license": "ISC",
  48. "engines": {
  49. "node": ">= 10"
  50. },
  51. "files": [
  52. "index.js",
  53. "lib/*.js"
  54. ],
  55. "tap": {
  56. "coverage-map": "map.js",
  57. "check-coverage": true
  58. }
  59. }