package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "node-stream-zip",
  3. "version": "1.15.0",
  4. "description": "node.js library for reading and extraction of ZIP archives",
  5. "keywords": [
  6. "zip",
  7. "archive",
  8. "unzip",
  9. "stream"
  10. ],
  11. "homepage": "https://github.com/antelle/node-stream-zip",
  12. "author": "Antelle <antelle.net@gmail.com> (https://github.com/antelle)",
  13. "bugs": {
  14. "email": "antelle.net@gmail.com",
  15. "url": "https://github.com/antelle/node-stream-zip/issues"
  16. },
  17. "license": "MIT",
  18. "files": [
  19. "LICENSE",
  20. "node_stream_zip.js",
  21. "node_stream_zip.d.ts"
  22. ],
  23. "scripts": {
  24. "lint": "eslint node_stream_zip.js test/tests.js",
  25. "check-types": "tsc node_stream_zip.d.ts",
  26. "test": "nodeunit test/tests.js"
  27. },
  28. "main": "node_stream_zip.js",
  29. "types": "node_stream_zip.d.ts",
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/antelle/node-stream-zip.git"
  33. },
  34. "engines": {
  35. "node": ">=0.12.0"
  36. },
  37. "devDependencies": {
  38. "@types/node": "^14.14.6",
  39. "eslint": "^7.19.0",
  40. "nodeunit": "^0.11.3",
  41. "prettier": "^2.2.1"
  42. },
  43. "funding": {
  44. "type": "github",
  45. "url": "https://github.com/sponsors/antelle"
  46. }
  47. }