minify-html/package.json

61 lines
1.4 KiB
JSON

{
"name": "hyperbuild",
"version": "0.0.1",
"description": "Streaming HTML preprocessor and minifier for C and Node.js",
"main": "out/main.js",
"files": [
"out/**"
],
"scripts": {
"build": "npm run clean && ./compile.sh && tsc",
"buildInternalDocs": "doxygen Doxyfile",
"test": "mocha -r ts-node/register src/test/**/*.spec.ts",
"clean": "rm -rf out",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wilsonzlin/hyperbuild.git"
},
"keywords": [
"html",
"c",
"fast",
"build",
"builder",
"preprocess",
"preprocessor",
"minify",
"minifier"
],
"author": {
"email": "contact@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",
"dependencies": {
"shelljs": "^0.8.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.1",
"@types/node": "^10.5.6",
"@types/shelljs": "^0.8.0",
"@types/strip-ansi": "^3.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"fs-extra": "7.0.0",
"mocha": "^5.2.0",
"strip-ansi": "^4.0.0",
"ts-node": "^6.1.0",
"typescript": "3.0.1"
}
}