-
Notifications
You must be signed in to change notification settings - Fork 777
/
package.json
80 lines (80 loc) · 2.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "virtual-dom",
"version": "2.1.1",
"description": "A batched diff-based DOM rendering strategy",
"keywords": [
"virtual",
"dom",
"vdom",
"vtree",
"diff",
"patch",
"browser"
],
"author": "Matt-Esch <matt@mattesch.info>",
"repository": "git://github.com/Matt-Esch/virtual-dom.git",
"main": "index",
"homepage": "https://github.com/Matt-Esch/virtual-dom",
"contributors": [
{
"name": "Matt-Esch"
}
],
"bugs": {
"url": "https://github.com/Matt-Esch/virtual-dom/issues",
"email": "matt@mattesch.info"
},
"dependencies": {
"browser-split": "0.0.1",
"error": "^4.3.0",
"ev-store": "^7.0.0",
"global": "^4.3.0",
"is-object": "^1.0.1",
"next-tick": "^0.2.2",
"x-is-array": "0.1.0",
"x-is-string": "0.1.0"
},
"devDependencies": {
"browserify": "^9.0.7",
"istanbul": "^0.3.13",
"min-document": "^2.14.0",
"opn": "^1.0.1",
"run-browser": "^2.0.2",
"tap-dot": "^1.0.0",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"zuul": "^2.1.1"
},
"license": "MIT",
"scripts": {
"test": "node ./test/index.js | tap-spec",
"dot": "node ./test/index.js | tap-dot",
"start": "node ./index.js",
"cover": "istanbul cover --report html --print detail ./test/index.js",
"view-cover": "istanbul report html && opn ./coverage/index.html",
"browser": "run-browser test/index.js",
"phantom": "run-browser test/index.js -b | tap-spec",
"dist": "browserify --standalone virtual-dom index.js > dist/virtual-dom.js",
"travis-test": "npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm version patch && git push origin master --tags && npm publish",
"release-minor": "git checkout master && npm version minor && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version major && git push origin master --tags && npm publish"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}