-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 936 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
{
"name": "vel",
"version": "1.2.0",
"description": "Create and render virtual-dom elements with ease",
"main": "index.js",
"scripts": {
"test": "standard && NODE_ENV=test node test",
"test-cov": "standard && NODE_ENV=test istanbul cover test.js",
"watch": "watch 'npm t'"
},
"repository": "yoshuawuyts/vel",
"keywords": [
"helper",
"main-loop",
"render",
"vdom",
"virtual-dom",
"vtree"
],
"license": "MIT",
"dependencies": {
"dom-delegator": "^13.1.0",
"main-loop": "^3.1.0",
"vdom-to-html": "^2.1.1",
"virtual-dom": "~2.0.1",
"virtual-html": "^2.0.0",
"virtual-hyperscript-svg": "^2.0.0"
},
"devDependencies": {
"istanbul": "^0.3.17",
"jsdom": "^5.6.1",
"noop2": "^2.0.0",
"raf": "^3.1.0",
"standard": "^4.5.4",
"tape": "^4.0.1",
"watch": "^0.16.0"
},
"files": [
"LICENSE",
"README.md",
"index.js"
]
}