package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "author": "GitHub Inc.",
  3. "name": "tar",
  4. "description": "tar for node",
  5. "version": "6.1.12",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/node-tar.git"
  9. },
  10. "scripts": {
  11. "genparse": "node scripts/generate-parse-fixtures.js",
  12. "template-oss-apply": "template-oss-apply --force",
  13. "lint": "eslint \"**/*.js\"",
  14. "postlint": "template-oss-check",
  15. "lintfix": "npm run lint -- --fix",
  16. "snap": "tap",
  17. "test": "tap",
  18. "posttest": "npm run lint"
  19. },
  20. "dependencies": {
  21. "chownr": "^2.0.0",
  22. "fs-minipass": "^2.0.0",
  23. "minipass": "^3.0.0",
  24. "minizlib": "^2.1.1",
  25. "mkdirp": "^1.0.3",
  26. "yallist": "^4.0.0"
  27. },
  28. "devDependencies": {
  29. "@npmcli/eslint-config": "^4.0.0",
  30. "@npmcli/template-oss": "4.8.0",
  31. "chmodr": "^1.2.0",
  32. "end-of-stream": "^1.4.3",
  33. "events-to-array": "^1.1.2",
  34. "mutate-fs": "^2.1.1",
  35. "nock": "^13.2.9",
  36. "rimraf": "^3.0.2",
  37. "tap": "^16.0.1"
  38. },
  39. "license": "ISC",
  40. "engines": {
  41. "node": ">=10"
  42. },
  43. "files": [
  44. "bin/",
  45. "lib/",
  46. "index.js"
  47. ],
  48. "tap": {
  49. "coverage-map": "map.js",
  50. "timeout": 0,
  51. "nyc-arg": [
  52. "--exclude",
  53. "tap-snapshots/**"
  54. ]
  55. },
  56. "templateOSS": {
  57. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  58. "version": "4.8.0",
  59. "content": "scripts/template-oss",
  60. "engines": ">=10",
  61. "distPaths": [
  62. "index.js"
  63. ],
  64. "allowPaths": [
  65. "/index.js"
  66. ],
  67. "ciVersions": [
  68. "10.x",
  69. "12.x",
  70. "14.x",
  71. "16.x",
  72. "18.x"
  73. ]
  74. }
  75. }