-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
32 lines (32 loc) · 854 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": "html-to-vdom",
"version": "0.7.0",
"description": "Converts html into a vtree",
"main": "index.js",
"scripts": {
"test": "mocha test",
"test-coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/TimBeyer/html-to-vdom.git"
},
"author": "Tim Beyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/TimBeyer/html-to-vdom/issues"
},
"homepage": "https://github.com/TimBeyer/html-to-vdom",
"dependencies": {
"ent": "2.2.0",
"htmlparser2": "3.9.0"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.2.0",
"coveralls": "2.11.6",
"istanbul": "0.4.2",
"mocha": "2.4.4",
"virtual-dom": "2.1.1"
}
}