minify-html/nodejs/package.json

59 lines
1.3 KiB
JSON

{
"name": "@minify-html/node",
"description": "Extremely fast and smart HTML + JS + CSS minifier",
"bin": {
"minify-html": "./cli.js"
},
"main": "index.js",
"files": [
"src/**",
"Cargo.toml",
"cli.js",
"index.d.ts",
"index.js",
"README.md",
"postinstall.js"
],
"version": "0.11.1",
"types": "index.d.ts",
"scripts": {
"build": "cargo-cp-artifact --artifact cdylib minify-html-node index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"clean": "shx rm -rf target index.node",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsonzlin/minify-html.git"
},
"author": {
"email": "npm@wilsonl.in",
"name": "Wilson Lin",
"url": "https://wilsonl.in/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wilsonzlin/minify-html/issues"
},
"engines": {
"node": ">= 8.6.0"
},
"homepage": "https://github.com/wilsonzlin/minify-html#readme",
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"devDependencies": {
"@types/node": "^14.6.0",
"shx": "^0.3.4"
},
"keywords": [
"compress",
"compressor",
"fast",
"html",
"minifier",
"minify"
]
}