-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.29 KB
/
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
45
46
47
48
49
50
51
52
53
54
{
"name": "virtual-dom-stringify",
"version": "3.0.1",
"description": "Stringify virtual-dom trees into HTML.",
"main": "lib/stringify.js",
"files": [
"dist",
"lib"
],
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js test"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/virtual-dom-stringify.git"
},
"keywords": [
"virtual-dom",
"html",
"stringify",
"parse",
"vtree",
"vnode",
"vdom-virtualize"
],
"author": "Alex Mingoia <[email protected]>",
"license": "BSD",
"bugs": {
"url": "https://github.com/alexmingoia/virtual-dom-stringify/issues"
},
"homepage": "https://github.com/alexmingoia/virtual-dom-stringify",
"devDependencies": {
"browserify": "^9.0.3",
"expect.js": "^0.3.1",
"gulp": "^3.8.11",
"gulp-clean": "^0.3.1",
"gulp-instrument": "^0.1.0",
"gulp-jshint": "^1.9.2",
"gulp-mocha-phantomjs": "^0.5.0",
"gulp-rename": "^1.2.0",
"jsdoc-to-markdown": "^0.6.4",
"jshint-stylish": "^1.0.1",
"phantomjs": "^1.9.16",
"vdom-thunk": "^3.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"he": "^0.5.0",
"html-attributes": "^1.1.0",
"param-case": "^1.1.1",
"svg-attributes": "^1.0.0",
"virtual-dom": "^2.0.1"
}
}