-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
{
"name": "selenium-webdriver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/wdio ./suite.cucumber.conf.js"
},
"author": "Michał Korczyński",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@wdio/dot-reporter": "^5.16.5",
"@wdio/spec-reporter": "^5.16.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"graceful-fs": "^4.1.4",
"grunt": "^1.0.4",
"grunt-webdriver": "^3.0.0",
"junit-viewer": "^4.11.1",
"wdio-json-reporter": "^1.0.0",
"webdriverio": "^5.16.10",
"@wdio/jasmine-framework": "^5.16.10"
},
"devDependencies": {
"@wdio/cli": "^5.16.10",
"@wdio/cucumber-framework": "^5.16.10",
"@wdio/junit-reporter": "^5.15.5",
"@wdio/local-runner": "^5.16.10",
"@wdio/sauce-service": "^5.0.0",
"@wdio/selenium-standalone-service": "^5.16.10",
"@wdio/sync": "^5.16.10",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"grunt-cli": "^1.3.2",
"grunt-cucumberjs": "^2.0.2",
"grunt-jasmine": "^0.1.0",
"node-uuid": "^1.4.7",
"selenium-standalone": "^6.17.0",
"wdio-cucumber-framework": "^2.2.8",
"wdio-cucumber-reporter": "0.0.2"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}