package.json 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@eggjs/yauzl",
  3. "version": "2.11.0",
  4. "description": "yet another unzip library for node",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "echo 'ignore lint'",
  8. "test": "node --trace-deprecation test/test.js",
  9. "ci": "istanbul cover --report lcovonly test/test.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/node-modules/yauzl.git"
  14. },
  15. "keywords": [
  16. "unzip",
  17. "zip",
  18. "stream",
  19. "archive",
  20. "file"
  21. ],
  22. "author": "Josh Wolfe <thejoshwolfe@gmail.com>",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/node-modules/yauzl/issues"
  26. },
  27. "homepage": "https://github.com/node-modules/yauzl",
  28. "dependencies": {
  29. "buffer-crc32": "~0.2.3",
  30. "fd-slicer2": "^1.2.0"
  31. },
  32. "devDependencies": {
  33. "bl": "~1.0.0",
  34. "istanbul": "~0.3.4",
  35. "pend": "~1.2.0"
  36. },
  37. "files": [
  38. "index.js"
  39. ],
  40. "publishConfig": {
  41. "access": "public",
  42. "registry": "https://registry.npmjs.org/"
  43. }
  44. }