-
-
Notifications
You must be signed in to change notification settings - Fork 320
/
Copy pathpackage.json
50 lines (50 loc) · 1.75 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
{
"name": "cucumber-boilerplate",
"version": "1.2.0",
"description": "Boilerplate project to run WebdriverIO tests with Cucumber",
"homepage": "https://github.com/webdriverio/cucumber-boilerplate",
"scripts": {
"clean": "read -p \"Are you sure you want to clean the project? [y/n] \" REPLY; if [[ $REPLY =~ ^[Yy]$ ]]; then rm -R .git .github demo-app test .codeclimate.yml .travis.yml jest.json wdio.BUILD.conf.js src/features/**; fi",
"local-webserver": "http-server ./demo-app -s",
"test": "npm run test:validate && npm run test:unit && npm run test:features",
"test:features": "npm run local-webserver & (wdio wdio.BUILD.conf.js; wdio_ret=$?; kill $(lsof -t -i:8080); exit $wdio_ret)",
"test:unit": "jest --config=jest.json",
"test:validate": "eslint 'src/**/*.js' 'test/**/*.js!(setup.js)'"
},
"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 <[email protected]>",
"contributors": [
"W. van Kuipers <[email protected]>"
],
"license": "MIT",
"dependencies": {
"babel-preset-es2015": "~6.24.0",
"babel-register": "~6.24.0",
"chai": "~4.1.0",
"wdio-cucumber-framework": "~0.3.1",
"wdio-phantomjs-service": "~0.2.2",
"wdio-selenium-standalone-service": "~0.0.9",
"wdio-spec-reporter": "~0.1.0",
"webdriverio": "4.7.1"
},
"devDependencies": {
"babel-polyfill": "~6.23.0",
"eslint": "~4.2.0",
"eslint-config-airbnb-base": "~11.2.0",
"eslint-plugin-import": "~2.7.0",
"http-server": "~0.10.0",
"jest": "~20.0.4"
}
}