You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.4KB

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