minify-html/nodejs/package.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2019-12-30 02:16:33 -05:00
{
"name": "hyperbuild",
2020-07-11 09:26:37 -04:00
"version": "0.2.4",
2020-07-10 06:51:59 -04:00
"description": "Fast allocation-less HTML minifier with smart whitespace handling",
"main": "dist/index.js",
"files": [
"dist/**",
2020-07-11 09:33:44 -04:00
"postinstall.js"
],
"scripts": {
"build": "npm run clean && tsc",
"build-binary": "neon build --release && mv native/index.node dist/native.node",
"clean": "rm -rf dist",
2020-07-11 09:33:44 -04:00
"postinstall": "node postinstall.js"
},
2019-12-30 02:16:33 -05:00
"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"
2019-12-30 02:16:33 -05:00
},
"keywords": [
"build",
"builder",
2019-12-30 03:20:33 -05:00
"compress",
"compressor",
"fast",
"html",
"minifier",
"minify",
2019-12-30 02:16:33 -05:00
"preprocess",
"preprocessor",
2019-12-30 03:20:33 -05:00
"rust"
2019-12-30 02:16:33 -05:00
]
}