UNPKG

html-build

Version:

Utility script to build HTML documents - Appends scripts and styles, removes debug parts, append HTML partials, template options, etc.

55 lines (54 loc) 1.37 kB
{ "name": "html-build", "version": "1.0.1", "description": "Utility script to build HTML documents - Appends scripts and styles, removes debug parts, append HTML partials, template options, etc.", "author": "SPA Tools", "license": "MIT", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/spatools/html-build.git" }, "bugs": { "url": "https://github.com/spatools/html-build/issues" }, "bin": { "html-build": "./bin/html-build.js" }, "keywords": [ "htmlbuild", "html", "builder", "htmlgen", "generate", "link", "script", "template", "utilities", "javascript", "utils", "spatools" ], "scripts": { "build": "npm run lint && npm run build-ts && npm run build-assets", "build-ts": "tsc -p . --outDir dist", "build-assets": "cpx \"{package.json,LICENSE,README.md}\" dist", "lint": "tslint -c tslint.json -p tsconfig.json", "release": "npm run build && cd dist && npm publish" }, "dependencies": { "glob": "^7.1.3", "js-beautify": "^1.8.9", "lodash": "^4.17.11", "nopt": "^4.0.1" }, "devDependencies": { "@types/glob": "^7.1.1", "@types/js-beautify": "^1.8.0", "@types/lodash": "^4.14.121", "@types/nopt": "^3.0.29", "cpx": "^1.5.0", "tslint": "^5.12.1", "typescript": "^3.3.3" } }