-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 918 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
{
"name": "hyperd",
"version": "0.1.0",
"description": "Virtual DOM based, template engine agnostic, a lightweight view library",
"keywords": [
"virtual",
"dom",
"component",
"view"
],
"repository": {
"type": "git",
"url": "git://github.com/nkzawa/hyperd"
},
"author": "Naoyuki Kanezawa <naoyuki.kanezawa@gmail.com>",
"license": "MIT",
"scripts": {
"prepublish": "browserify -s hyperd index.js > hyperd.js",
"test": "zuul --phantom --ui mocha-bdd -- test/index.js"
},
"dependencies": {
"clone": "1.0.2",
"deep-equal": "1.0.0",
"dom-delegate": "2.0.3",
"html-to-vdom": "nkzawa/html-to-vdom",
"raf": "2.0.4",
"trim": "0.0.1",
"virtual-dom": "2.0.1",
"xtend": "4.0.0"
},
"devDependencies": {
"browserify": "~10.1.1",
"es5-shim": "~4.1.1",
"expect.js": "~0.3.1",
"phantomjs": "~1.9.16",
"zuul": "~3.0.0"
}
}