eleventy-plugin-compress
Version:
Plugin for compressing HTML, CSS and JavaScript from templates with brotli/gzip/deflate algorithms.
43 lines (42 loc) • 1.02 kB
JSON
{
"name": "eleventy-plugin-compress",
"version": "1.0.5",
"description": "Plugin for compressing HTML, CSS and JavaScript from templates with brotli/gzip/deflate algorithms.",
"main": "index.js",
"exports": {
".": "./index.js",
"./index": "./index.js",
"./index.js": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Halo-Lab/eleventy-plugin-compress.git"
},
"publishConfig": {
"access": "public",
"directory": "build"
},
"scripts": {
"prebuild": "rimraf build",
"build": "rollup -c",
"postbuild": "npm run copy:package && npm run copy:readme && npm run copy:license",
"copy:package": "cpy package.json build",
"copy:readme": "cpy README.md build",
"copy:license": "cpy LICENSE build",
"prerelease": "npm run build",
"release": "npm publish build/"
},
"keywords": [
"Eleventy",
"brotli",
"gzip",
"deflate",
"plugin",
"compression"
],
"author": "Kapelianovych Yevhen",
"license": "ISC",
"peerDependencies": {
"chalk": "^4.1.0"
}
}