-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "webdriverio-blog-example",
"version": "1.0.0",
"description": "WebdriverIO Blog Example",
"scripts": {
"cleanup": "rm -rf ./allure-results && rm -rf ./allure-report && rm -rf ./errorShots",
"pretest": "npm run cleanup",
"test": "gulp test",
"report": "./node_modules/.bin/allure generate allure-results",
"posttest": "npm run report",
"postinstall": "./node_modules/.bin/selenium-standalone install",
"view-report": "allure report open"
},
"repository": {
"type": "git",
"url": "https://github.com/EastCoastProduct/webdriverio-blog-example",
"bugs": "https://github.com/EastCoastProduct/webdriverio-blog-example/issues"
},
"author": "Ana Prpic",
"license": "ISC",
"devDependencies": {
"allure-commandline": "latest",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-webdriver": "latest",
"istanbul": "^0.4.5",
"lodash": "^4.17.0",
"mocha": "^3.1.2",
"selenium-standalone": "^5.8.0",
"wdio-allure-reporter": "^0.1.2",
"wdio-dot-reporter": "0.0.6",
"wdio-mocha-framework": "^0.5.4",
"wdio-selenium-standalone-service": "0.0.7",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "^4.1.1"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"selenium",
"webdriverio",
"mocha",
"chai",
"nodejs",
"test boilerplate",
"allure"
]
}