-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
77 lines (77 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
{
"name": "wdio-screenshot",
"version": "0.6.0",
"description": "Screenshot commands for WebdriverIO",
"main": "lib/index.js",
"files": [
"*.md",
"src",
"lib"
],
"scripts": {
"clean-lib": "rimraf lib",
"clean-tmp": "rimraf .tmp",
"clean": "npm run clean-lib && npm run clean-tmp",
"build": "npm run clean && babel ./src -d lib",
"test": "npm run clean && mocha --compilers js:babel-register --timeout 15000 --recursive test/unit",
"test:local": "npm run clean && wdio ./test/wdio/wdio.local-conf.js",
"test:sauce": "npm run clean && wdio ./test/wdio/wdio.sauce-conf.js",
"test:appveyor": "npm run clean && wdio ./test/wdio/wdio.appveyor-conf.js",
"test:standalone": "npm run clean && npm run selenium-install && mocha --compilers js:babel-register --timeout 30000 --recursive test/standalone",
"selenium-install": "selenium-standalone install",
"server": "http-server test/fixture/web -p 3000",
"deploy-integration-tests": "gh-pages -d test/fixture/web",
"prepublish": "npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/zinserjan/wdio-screenshot"
},
"bugs": {
"url": "https://github.com/zinserjan/wdio-screenshot/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",
"gm": "^1.22.0",
"image-size": "^0.5.0",
"jimp": "^0.2.24",
"lodash": "^4.16.1",
"uuid": "^3.0.0",
"which": "^1.2.10"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-lodash": "^3.2.9",
"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",
"gh-pages": "^0.11.0",
"glob": "^7.1.0",
"http-server": "^0.9.0",
"mocha": "^2.4.5",
"node-resemble-js": "0.0.5",
"np": "^2.9.0",
"rimraf": "^2.5.2",
"selenium-standalone": "^6.4.1",
"sinon": "^1.17.6",
"wdio-mocha-framework": "^0.3.2",
"wdio-sauce-service": "^0.4.0",
"wdio-selenium-standalone-service": "0.0.8",
"webdriverio": "~4.8.0"
},
"engines": {
"node": ">=4"
}
}