minify-html/nodejs/package.json

49 lines
1.1 KiB
JSON

{
"name": "hyperbuild",
"version": "0.2.4",
"description": "Fast allocation-less HTML minifier with smart whitespace handling",
"main": "dist/index.js",
"files": [
"dist/**",
"postinstall.js"
],
"scripts": {
"build": "npm run clean && tsc",
"build-binary": "neon build --release && mv native/index.node dist/native.node",
"clean": "rm -rf dist",
"postinstall": "node postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsonzlin/hyperbuild.git"
},
"author": {
"email": "npm@wilsonl.in",
"name": "Wilson Lin",
"url": "https://wilsonl.in/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wilsonzlin/hyperbuild/issues"
},
"homepage": "https://github.com/wilsonzlin/hyperbuild#readme",
"devDependencies": {
"@types/node": "^14.0.22",
"neon-cli": "^0.4.0",
"typescript": "^3.9.6"
},
"keywords": [
"build",
"builder",
"compress",
"compressor",
"fast",
"html",
"minifier",
"minify",
"preprocess",
"preprocessor",
"rust"
]
}