forked from amiya-pattnaik/webdriverIO-with-mochaBDD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "webdriverIO-with-mochaBDD",
"version": "2.0.0",
"description": "WebDriver-v5 bindings for Node.js with Mocha",
"main": "index.js",
"scripts": {
"node-inspector": "node-inspector --debug-port 5859 --no-preload",
"test": "node node_modules/.bin/wdio ./test/config/suite.mocha.conf.js",
"allure-report": "node_modules/.bin/allure generate ./test/reports/allure-results && allure report",
"junit-report": "node_modules/.bin/junit-viewer --results=./test/reports/junit-results --save=junit-results.html && open junit-results.html"
},
"keywords": [
"selenium",
"web",
"testing",
"webdriverjs",
"webdriverio",
"automation",
"mocha"
],
"author": "Amiya Pattanaik <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@types/chai": "^4.1.7",
"@types/expect": "^1.20.3",
"@wdio/allure-reporter": "^5.3.4",
"@wdio/browserstack-service": "^5.3.4",
"@wdio/dot-reporter": "^5.2.3",
"@wdio/junit-reporter": "^5.3.1",
"@wdio/sauce-service": "^5.3.2",
"@wdio/selenium-standalone-service": "^5.2.2",
"@wdio/spec-reporter": "^5.2.3",
"@wdio/sync": "^5.3.2",
"assert": "^1.4.1",
"junit-viewer": "^4.11.1",
"lodash": "^4.17.4",
"node-excel-to-json": "0.0.3",
"underscore": "^1.8.3",
"webdriverio": "^5.3.5"
},
"devDependencies": {
"@wdio/cli": "^5.3.5",
"@wdio/local-runner": "^5.3.5",
"@wdio/mocha-framework": "^5.3.2",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-mocha": "^1.2.0",
"grunt-webdriver": "^3.0.0",
"selenium-standalone": "^6.15.4"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}