hyperhtml-style
Version:
The hyperHTML's html/svg style updater
35 lines (34 loc) • 1.1 kB
JSON
{
"name": "hyperhtml-style",
"version": "0.1.3",
"description": "The hyperHTML's html/svg style updater",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "min.js",
"scripts": {
"build": "npm run cjs && npm run esm && npm run min && npm run test && npm run size",
"cjs": "cp index.js cjs/ && echo 'module.exports = hyperStyle;' >> cjs/index.js",
"esm": "cp index.js esm/ && echo 'export default hyperStyle;' >> esm/index.js",
"min": "uglifyjs index.js -c -m -o min.js",
"size": "cat index.js | wc -c && cat min.js | wc -c && gzip -c9 min.js | wc -c && cat min.js | brotli | wc -c",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "istanbul cover test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/WebReflection/hyperhtml-style.git"
},
"keywords": [
"hyperhtml",
"style"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^5.0.1",
"basichtml": "^2.4.9",
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"uglifyjs": "^2.4.11"
}
}