-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.57 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
{
"name": "vdom-parser",
"version": "1.4.1",
"description": "A client-side DOM to vdom parser based on DOMParser API, compatible with virtual-dom",
"main": "index.js",
"scripts": {
"test": "mochify -R spec ./test/test.js",
"test-report": "mochify -R spec --plugin [ mochify-istanbul --exclude '**/test/**/*' --dir ./coverage --report lcov ] ./test/test.js",
"test-coverage": "mochify -R spec --plugin [ mochify-istanbul --exclude '**/test/**/*' --dir ./coverage --report lcov ] ./test/test.js && cat ./coverage/lcov.info | coveralls",
"test-lab": "SAUCE_APPIUM_VERSION=1.6.3 DEBUG=zuul* zuul --ui mocha-bdd -- test/test.js",
"test-local": "DEBUG=zuul* zuul --open --local 8080 --ui mocha-bdd -- test/test.js",
"test-travis": "npm run test-coverage && npm run test-lab",
"dist": "browserify index.js -s vdomParser > dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitinn/vdom-parser.git"
},
"keywords": [
"dom",
"vdom",
"parser",
"virtual-dom"
],
"author": "David Frank",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitinn/vdom-parser/issues"
},
"homepage": "https://github.com/bitinn/vdom-parser#readme",
"dependencies": {},
"peerDependencies": {
"virtual-dom": "2.x"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"mocha": "^2.2.5",
"mochify": "^2.9.0",
"mochify-istanbul": "^2.3.0",
"onchange": "^2.1.2",
"phantomjs-prebuilt": "^2.1.3",
"virtual-dom": "^2.0.1",
"zuul": "^3.0.0"
}
}