forked from webdriverio/cucumber-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.83 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
{
"name": "cucumber-boilerplate",
"version": "1.3.2",
"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": "forever start -s ./node_modules/.bin/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=$?; forever stopall; 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.26.0",
"chai": "~4.1.2",
"wdio-cucumber-framework": "~1.0.2",
"wdio-phantomjs-service": "~0.2.2",
"wdio-selenium-standalone-service": "~0.0.9",
"wdio-spec-reporter": "~0.1.2",
"webdriverio": "4.9.8"
},
"devDependencies": {
"babel-jest": "~21.2.0",
"babel-polyfill": "~6.26.0",
"eslint": "~4.11.0",
"eslint-config-airbnb-base": "~12.1.0",
"eslint-plugin-import": "~2.8.0",
"forever": "~0.15.3",
"http-server": "~0.10.0",
"jest": "~21.2.0"
}
}