-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 991 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
{
"name": "krumelur",
"version": "0.1.0",
"description": "This is a mix of virtual-dom and vdom-parser, that applies DOM \"diffs\" without any server configuration—it just needs plain old HTML.",
"main": "./public/krumelur.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify ./src/krumelur.js -o ./public/krumelur.js",
"build_minified": "browserify src/krumelur.js | uglifyjs --compress --mangle > ./public/krumelur.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hallgren/krumelur.git"
},
"keywords": [
"virtual-dom"
],
"author": "Morgan Hallgren <[email protected]>",
"license": "Apache",
"bugs": {
"url": "https://github.com/hallgren/krumelur/issues"
},
"homepage": "https://github.com/hallgren/krumelur",
"dependencies": {
"vdom-parser": "",
"virtual-dom": ""
},
"devDependencies": {
"browserify": "^12.0.1",
"uglify": "^0.1.5"
}
}