forked from jorgebucaran/hyperapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 999 Bytes
/
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
{
"name": "hyperapp",
"description": "HyperApp is a 1kb functional JavaScript library for building modern UI applications",
"version": "0.0.5",
"main": "index.js",
"author": "Jorge Bucaran",
"license": "MIT",
"repository": "hyperapp/hyperapp",
"keywords": [
"hyperx",
"hypertext",
"virtual-dom",
"vdom",
"template string"
],
"scripts": {
"build": "browserify app.js -s app -g uglifyify -p bundle-collapser/plugin | uglifyjs > dist/app.min.js && browserify html.js -s html -g uglifyify -p bundle-collapser/plugin | uglifyjs > dist/html.min.js",
"gzip": "gzip -c dist/app.min.js > dist/app.min.js.gz",
"zopfli": "zopfli dist/app.min.js -c --i2000 > dist/app.min.js.gz"
},
"dependencies": {
"hyperx": "^2.0.5"
},
"devDependencies": {
"browserify": "^13.1.1",
"bundle-collapser": "^1.2.1",
"uglifyify": "^3.0.4",
"uglifyjs": "^2.4.10"
}
}