uhandlers
Version:
µhtml attributes handlers
53 lines (52 loc) • 1.5 kB
JSON
{
"name": "uhandlers",
"version": "0.7.0",
"description": "µhtml attributes handlers",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run rollup:es && npm run rollup:babel && npm run min && npm run test",
"cjs": "ascjs esm cjs",
"rollup:es": "rollup --config rollup/es.config.js",
"rollup:babel": "rollup --config rollup/babel.config.js",
"min": "terser index.js --comments=/^!/ -c -m -o min.js",
"test": "nyc node test/index.js",
"coverage": "mkdir -p ./coverage; nyc report --reporter=text-lcov > ./coverage/lcov.info"
},
"keywords": [
"uhtml",
"handlers",
"lighterhtml"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"ascjs": "^5.0.1",
"linkedom": "^0.14.16",
"nyc": "^15.1.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.15.0"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"unpkg": "min.js",
"dependencies": {
"uarray": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/uhandlers.git"
},
"bugs": {
"url": "https://github.com/WebReflection/uhandlers/issues"
},
"homepage": "https://github.com/WebReflection/uhandlers#readme"
}