-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
65 lines (65 loc) · 1.83 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
{
"name": "wdio-visual-regression-service",
"version": "0.9.0",
"description": "Visual regression testing for WebdriverIO",
"main": "index.js",
"files": [
"index.js",
"compare.js",
"launcher.js",
"*.md",
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib .tmp",
"phantom": "phantomjs --webdriver=4444",
"build": "npm run clean && babel ./src -d lib",
"test": "npm run test:unit && npm run test:wdio",
"test:unit": "npm run clean && mocha --compilers js:babel-register test/unit/**/*.test.js",
"test:wdio": "npm run clean && wdio ./test/wdio/wdio.config.js",
"prepublish": "npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/zinserjan/wdio-visual-regression-service"
},
"bugs": {
"url": "https://github.com/zinserjan/wdio-visual-regression-service/issues"
},
"author": "Jan-André Zinser",
"license": "MIT",
"peerDependencies": {
"webdriverio": "^4.0.7"
},
"dependencies": {
"babel-runtime": "^6.9.0",
"debug": "^2.2.0",
"fs-extra": "^3.0.1",
"lodash": "^4.13.1",
"node-resemble-js": "0.0.5",
"nodeclient-spectre": "^1.0.3",
"platform": "^1.3.1",
"wdio-screenshot": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"nock": "^9.2.3",
"np": "^2.10.0",
"phantomjs": "^1.9.20",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"wdio-mocha-framework": "^0.3.1",
"wdio-selenium-standalone-service": "0.0.7",
"webdriverio": "^4.0.9"
}
}