pop
Version:
Pop is a [Hyperapp](https://github.com/hyperapp/hyperapp) / [Ultradom](https://github.com/ultradom/ultradom) spin-off project — yet another micro-framework for creating graphical user interfaces. This is not the final title, but let's go with that for now
32 lines (31 loc) • 951 B
JSON
{
"name": "pop",
"description": "",
"version": "0.0.33",
"main": "dist/pop.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"license": "MIT",
"repository": "jorgebucaran/pop",
"files": [
"src",
"dist"
],
"author": "Jorge Bucaran",
"keywords": [
"pop"
],
"scripts": {
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i src/index.js -o dist/pop.js -f umd -mn Pop",
"minify": "uglifyjs dist/pop.js -o dist/pop.js -mc pure_funcs=['Object.defineProperty'] --source-map includeSources,url=pop.js.map",
"format": "prettier --semi false --write 'src/**/*.js' 'pop.d.ts'",
"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": {
"prettier": "1.11.1",
"rollup": "^0.56.5",
"uglify-js": "3.3.14"
}
}