forked from CodeDrivenMitch/wdio-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.89 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
{
"name": "wdio-webcomponents",
"version": "1.0.2",
"description": "WebdriverIO plugin to handle shadow roots and DOMs",
"main": "lib/index.js",
"keywords": ["webdriver", "shadow", "root", "dom", "webcomponents", "webcomponentsjs", "polymer"],
"homepage": "https://github.com/Morlack/wdio-webcomponents",
"scripts": {
"build": "npm run clean && babel ./src -d lib",
"clean": "npm run clean-lib && npm run clean-tmp",
"clean-lib": "rimraf lib",
"clean-tmp": "rimraf .tmp",
"test:local": "wdio ./test/wdio/wdio.local.conf.js",
"test:appveyor": "wdio ./test/wdio/wdio.appveyor.conf.js",
"test": "mocha --compilers js:babel-register --timeout 15000 --recursive test/unit"
},
"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",
"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"
},
"author": {
"name": "Mitchell Herrijgers",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/Morlack/wdio-webcomponents.git"
}
}