-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1018 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hypercomponent",
"version": "3.2.0",
"description": "Fast and light component system, backed by hyperHTML",
"main": "index.js",
"browser": {
"viperhtml": "hyperhtml"
},
"files": [
"dist"
],
"repository": "[email protected]:joshgillies/hypercomponent.git",
"author": "Josh Gillies <[email protected]>",
"license": "MIT",
"keywords": [
"dom",
"hyper",
"html",
"template",
"component",
"fast",
"performance",
"diff",
"hyperhtml",
"universal"
],
"scripts": {
"build": "rollup -c && npm run minify",
"minify": "uglifyjs dist/hypercomponent.js -c -m -o dist/hypercomponent.min.js",
"prepublishOnly": "npm test && npm run build",
"test": "standard"
},
"dependencies": {
"picocomponent": "^2.0.0",
"viperhtml": "^0.12.3"
},
"devDependencies": {
"rollup": "^0.45.2",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^9.0.2",
"uglify-js": "^3.0.27"
}
}