-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "mediawiki-webdriverio",
"version": "0.0.1",
"description": "An example repository on how to implement Selenium tests in Node.js using WebdriverIO",
"main": "wdio.conf.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt",
"selenium": "killall -0 chromedriver 2>/dev/null || chromedriver --url-base=/wd/hub --port=4444 & grunt webdriver:test; killall chromedriver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeljkofilipin/mediawiki-webdriverio.git"
},
"author": "Željko Filipin",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeljkofilipin/mediawiki-webdriverio/issues"
},
"homepage": "https://github.com/zeljkofilipin/mediawiki-webdriverio#readme",
"dependencies": {
"eslint-config-wikimedia": "^0.3.0",
"grunt": "^1.0.1",
"grunt-eslint": "^19.0.0",
"grunt-jsonlint": "^1.1.0",
"grunt-webdriver": "^2.0.2",
"load-grunt-tasks": "^3.5.2",
"wdio-dot-reporter": "0.0.6",
"wdio-mocha-framework": "^0.5.4",
"wdio-spec-reporter": "0.0.5",
"webdriverio": "^4.4.0"
}
}