-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "viff",
"description": "Find virtual differences between web pages in different environments(developing, staging, production) and browsers.",
"version": "0.10.3",
"homepage": "https://github.com/winsonwq/viff",
"author": {
"name": "Wang Qiu",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/winsonwq/viff.git"
},
"bugs": {
"url": "https://github.com/winsonwq/viff/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/winsonwq/viff/blob/master/LICENSE-MIT"
}
],
"main": "lib/viff.js",
"engines": {
"node": ">0.8.0"
},
"dependencies": {
"underscore": "*",
"wrench": "*",
"colors": "*",
"q": "latest",
"async": "~0.2.10",
"wd": "~0.2.12",
"connect": "^2.14.2",
"connect-multiparty": "^1.0.3",
"phantomjs-resemble": "latest",
"phantom": "^0.6.1",
"coffee-script": "^1.7.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-watch": "~0.2.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.0",
"sinon": "*",
"chai": "*",
"grunt-mocha-test": "~0.9.0"
},
"keywords": [
"testing",
"viff",
"diff",
"web",
"e2e"
],
"bin": {
"viff": "./bin/viff",
"viffstream": "./bin/viffstream",
"viffserver": "./bin/viffserver"
},
"scripts": {
"build": "node_modules/coffee-script/bin/cake build",
"install": "npm run build",
"test": "npm install && grunt default"
}
}