-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.63 KB
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
{
"name": "cucumber-boilerplate",
"version": "1.1.1",
"description": "Boilerplate project to run WebdriverIO tests with Cucumber",
"homepage": "https://github.com/webdriverio/cucumber-boilerplate",
"scripts": {
"start": "wdio wdio.BUILD.conf.js",
"clean": "read -p \"Are you sure you want to clean the project? [y/n] \" -n 1 -r; if [[ $REPLY =~ ^[Yy]$ ]]; then sudo rm -R .git .github demo-app test .codeclimate.yml .travis.yml jest.json wdio.BUILD.conf.js src/features/**; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/webdriverio/cucumber-boilerplate.git"
},
"bugs": {
"url": "https://github.com/webdriverio/cucumber-boilerplate/issues"
},
"keywords": [
"webdriverio",
"cucumber",
"test",
"selenium"
],
"author": "Christian Bromann <christian@saucelabs.com>",
"license": "MIT",
"dependencies": {
"babel-preset-es2015": "~6.24.0",
"babel-register": "~6.24.0",
"chai": "~4.0.0",
"cucumber": "~2.2.0",
"dotenv": "^4.0.0",
"lodash": "^4.17.4",
"url-join": "^2.0.2",
"wdio-cucumber-framework": "~0.3.0",
"wdio-phantomjs-service": "~0.2.2",
"wdio-sauce-service": "^0.4.0",
"wdio-selenium-standalone-service": "^0.0.8",
"wdio-spec-reporter": "~0.1.0",
"webdriverio": "~4.8.0",
"wdio-json-reporter": "~0.2.1"
},
"devDependencies": {
"babel-jest": "~20.0.0",
"babel-polyfill": "~6.23.0",
"eslint": "~3.19.0",
"eslint-config-airbnb-base": "~11.2.0",
"eslint-plugin-import": "~2.3.0",
"http-server": "~0.10.0",
"jest": "~20.0.0",
"allure-commandline": "~2.3.5",
"wdio-allure-reporter": "~0.1.2"
}
}