package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "pako",
  3. "description": "zlib port to javascript - fast, modularized, with browser support",
  4. "version": "2.1.0",
  5. "keywords": [
  6. "zlib",
  7. "deflate",
  8. "inflate",
  9. "gzip"
  10. ],
  11. "contributors": [
  12. "Andrei Tuputcyn (https://github.com/andr83)",
  13. "Vitaly Puzrin (https://github.com/puzrin)",
  14. "Friedel Ziegelmayer (https://github.com/dignifiedquire)",
  15. "Kirill Efimov (https://github.com/Kirill89)",
  16. "Jean-loup Gailly",
  17. "Mark Adler"
  18. ],
  19. "files": [
  20. "index.js",
  21. "dist/",
  22. "lib/"
  23. ],
  24. "license": "(MIT AND Zlib)",
  25. "repository": "nodeca/pako",
  26. "module": "./dist/pako.esm.mjs",
  27. "exports": {
  28. ".": {
  29. "import": "./dist/pako.esm.mjs",
  30. "require": "./index.js"
  31. },
  32. "./package.json": "./package.json",
  33. "./dist/*": "./dist/*",
  34. "./lib/*": "./lib/*",
  35. "./lib/zlib/*": "./lib/zlib/*",
  36. "./lib/utils/*": "./lib/utils/*"
  37. },
  38. "scripts": {
  39. "lint": "eslint .",
  40. "test": "npm run lint && mocha",
  41. "coverage": "npm run lint && nyc mocha && nyc report --reporter html",
  42. "build": "rollup -c",
  43. "build_fixtures": "node support/build_fixtures.js",
  44. "doc": "node support/build_doc.js",
  45. "gh-doc": "npm run doc && gh-pages -d doc -f",
  46. "prepublishOnly": "npm run gh-doc"
  47. },
  48. "devDependencies": {
  49. "@babel/preset-env": "^7.12.1",
  50. "@rollup/plugin-babel": "^5.2.1",
  51. "@rollup/plugin-commonjs": "^16.0.0",
  52. "@rollup/plugin-node-resolve": "^10.0.0",
  53. "eslint": "^7.13.0",
  54. "gh-pages": "^3.1.0",
  55. "mocha": "^8.2.1",
  56. "multiparty": "^4.1.3",
  57. "ndoc": "^6.0.0",
  58. "nyc": "^15.1.0",
  59. "rollup": "^2.33.1",
  60. "rollup-plugin-terser": "^7.0.2",
  61. "shelljs": "^0.8.4"
  62. },
  63. "dependencies": {}
  64. }