hyperapp/packages/time/package.json

31 lines
983 B
JSON

{
"name": "@hyperapp/time",
"description": "",
"version": "0.0.0",
"main": "dist/hyperapp.js",
"module": "src/index.js",
"license": "MIT",
"repository": "jorgebucaran/hyperapp/tree/master/packages/time",
"files": [
"src",
"dist"
],
"author": "Jorge Bucaran",
"keywords": [
"time",
"hyperapp"
],
"scripts": {
"test": "exit",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i src/index.js -o dist/hyperappTime.js --no-esModule -m -f umd -n hyperappTime",
"minify": "terser dist/hyperappTime.js -o dist/hyperappTime.js -mc --source-map includeSources,url=hyperappTime.js.map",
"prepare": "npm run build",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"devDependencies": {
"rollup": "^1.11.2",
"terser": "^3.17.0"
}
}