package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "compress-commons",
  3. "version": "4.1.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": ">= 10"
  24. },
  25. "scripts": {
  26. "test": "mocha --reporter dot"
  27. },
  28. "dependencies": {
  29. "buffer-crc32": "^0.2.13",
  30. "crc32-stream": "^4.0.2",
  31. "normalize-path": "^3.0.0",
  32. "readable-stream": "^3.6.0"
  33. },
  34. "devDependencies": {
  35. "chai": "4.3.8",
  36. "mkdirp": "2.1.6",
  37. "mocha": "9.2.2",
  38. "rimraf": "3.0.2"
  39. },
  40. "keywords": [
  41. "compress",
  42. "commons",
  43. "archive"
  44. ]
  45. }