-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.25 KB
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
35
36
37
38
39
40
41
42
43
{
"name": "hyperhtml",
"version": "1.12.5",
"description": "A Fast & Light Virtual DOM Alternative",
"browser": "min.js",
"homepage": "https://viperhtml.js.org/hyper.html",
"main": "index.js",
"module": "index.mjs",
"scripts": {
"build": "node bundler.js dependencies && npm run minify && node bundler.js && npm run ie && npm test && npm run size",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"ie": "babel ./test/test.js --out-dir ./test/ie --presets=es2015",
"minify": "uglifyjs index.js --comments=/^!/ --compress --mangle -o min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c",
"test": "istanbul cover test/runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/hyperhtml.git"
},
"keywords": [
"dom",
"template",
"fast",
"performance",
"diff"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebReflection/hyperhtml/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"majinbuu": "^0.4.3",
"tressa": "^0.3.1",
"uglify-js": "^2.8.5"
}
}