forked from jorgebucaran/hyperapp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "hyperapp",
"description": "JavaScript micro-framework for building web applications.",
"version": "2.0.0-alpha.10",
"main": "dist/hyperapp.js",
"module": "src/index.js",
"license": "MIT",
"repository": "jorgebucaran/hyperapp",
"homepage": "https://github.com/jorgebucaran/hyperapp",
"files": [
"src",
"dist"
],
"author": "Jorge Bucaran",
"keywords": [
"hyperapp",
"frontend",
"framework",
"virtual dom",
"vdom"
],
"scripts": {
"test": "exit",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i src/index.js -o dist/hyperapp.js --no-esModule -m -f umd -n hyperapp",
"minify": "terser dist/hyperapp.js -o dist/hyperapp.js -mc --source-map includeSources,url=hyperapp.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.8.0",
"terser": "^3.17.0"
}
}