package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "compress-commons",
  3. "version": "6.0.2",
  4. "description": "a library that defines a common interface for working with archive formats within node",
  5. "homepage": "https://github.com/archiverjs/node-compress-commons",
  6. "author": {
  7. "name": "Chris Talkington",
  8. "url": "http://christalkington.com/"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/archiverjs/node-compress-commons.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/archiverjs/node-compress-commons/issues"
  16. },
  17. "license": "MIT",
  18. "main": "lib/compress-commons.js",
  19. "files": [
  20. "lib"
  21. ],
  22. "engines": {
  23. "node": ">= 14"
  24. },
  25. "scripts": {
  26. "test": "mocha --reporter dot"
  27. },
  28. "dependencies": {
  29. "crc-32": "^1.2.0",
  30. "crc32-stream": "^6.0.0",
  31. "is-stream": "^2.0.1",
  32. "normalize-path": "^3.0.0",
  33. "readable-stream": "^4.0.0"
  34. },
  35. "devDependencies": {
  36. "chai": "4.4.1",
  37. "mkdirp": "3.0.1",
  38. "mocha": "10.3.0",
  39. "rimraf": "5.0.5"
  40. },
  41. "keywords": [
  42. "compress",
  43. "commons",
  44. "archive"
  45. ]
  46. }