minify-html/nodejs/package.json

52 lines
1.2 KiB
JSON
Raw Normal View History

2019-12-30 02:16:33 -05:00
{
2020-07-20 23:44:56 -04:00
"name": "@minify-html/js",
2021-01-06 05:57:41 -05:00
"version": "0.3.12",
2020-07-12 00:49:00 -04:00
"description": "Fast and smart HTML + JS minifier",
"main": "index.node",
"types": "index.d.ts",
"files": [
"postinstall.js",
"index.d.ts"
],
"scripts": {
2020-07-24 03:35:26 -04:00
"build": "node-gyp build && shx mv build/Release/index.node index.node",
2020-07-24 05:05:29 -04:00
"clean": "cd native && cargo clean && cd .. && node-gyp clean && node-gyp configure && shx rm -f index.node",
2020-07-11 09:33:44 -04:00
"postinstall": "node postinstall.js"
},
2019-12-30 02:16:33 -05:00
"repository": {
"type": "git",
2020-07-11 11:29:34 -04:00
"url": "git+https://github.com/wilsonzlin/minify-html.git"
2019-12-30 02:16:33 -05:00
},
"author": {
"email": "npm@wilsonl.in",
"name": "Wilson Lin",
"url": "https://wilsonl.in/"
},
"license": "MIT",
"bugs": {
2020-07-11 11:29:34 -04:00
"url": "https://github.com/wilsonzlin/minify-html/issues"
2019-12-30 02:16:33 -05:00
},
2020-07-24 02:29:25 -04:00
"engines": {
2020-07-24 02:42:55 -04:00
"node": ">= 8.6.0"
2020-07-24 02:29:25 -04:00
},
2020-07-11 11:29:34 -04:00
"homepage": "https://github.com/wilsonzlin/minify-html#readme",
"devDependencies": {
"@types/node": "^14.6.0",
2020-07-24 03:35:26 -04:00
"node-gyp": "^7.0.0",
"shx": "^0.3.2"
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
]
}