package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "pako",
  3. "description": "zlib port to javascript - fast, modularized, with browser support",
  4. "version": "1.0.7",
  5. "keywords": [
  6. "zlib",
  7. "deflate",
  8. "inflate",
  9. "gzip"
  10. ],
  11. "homepage": "https://github.com/nodeca/pako",
  12. "contributors": [
  13. "Andrei Tuputcyn (https://github.com/andr83)",
  14. "Vitaly Puzrin (https://github.com/puzrin)",
  15. "Friedel Ziegelmayer (https://github.com/dignifiedquire)",
  16. "Kirill Efimov (https://github.com/Kirill89)",
  17. "Jean-loup Gailly",
  18. "Mark Adler"
  19. ],
  20. "files": [
  21. "index.js",
  22. "dist/",
  23. "lib/"
  24. ],
  25. "license": "(MIT AND Zlib)",
  26. "repository": "nodeca/pako",
  27. "scripts": {
  28. "test": "make test"
  29. },
  30. "devDependencies": {
  31. "ansi": "^0.3.1",
  32. "benchmark": "^2.1.4",
  33. "bluebird": "^3.5.0",
  34. "browserify": "^14.4.0",
  35. "eslint": "^3.12.2",
  36. "grunt": "^1.0.1",
  37. "grunt-cli": "^1.2.0",
  38. "grunt-contrib-connect": "^1.0.2",
  39. "grunt-saucelabs": "^9.0.0",
  40. "istanbul": "^0.4.5",
  41. "mocha": "^3.2.0",
  42. "multiparty": "^4.1.3",
  43. "ndoc": "^5.0.1",
  44. "uglify-js": "^3.0.25",
  45. "zlibjs": "^0.3.1"
  46. },
  47. "dependencies": {}
  48. }