forked from webdriverio/cucumber-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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
{
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"name": "cucumber-boilerplate",
"version": "2.0.0",
"description": "Boilerplate project to run WebdriverIO tests with Cucumber",
"homepage": "https://github.com/webdriverio/cucumber-boilerplate",
"contributors": [
"W. van Kuipers <[email protected]>"
],
"repository": {
"type": "git",
"getUrl": "https://github.com/webdriverio/cucumber-boilerplate.git"
},
"bugs": {
"getUrl": "https://github.com/webdriverio/cucumber-boilerplate/issues"
},
"keywords": [
"wdio",
"webdriver",
"webdriverio",
"cucumber",
"test",
"boilerplate",
"selenium"
],
"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",
"test": "run-s test:*",
"test:lint": "eslint 'src/**/*.ts' 'test/**/*.js!(setup.js)'",
"test:unit": "jest --config=jest.config.js --detectOpenHandles",
"test:features": "wdio run wdio.BUILD.conf.ts",
"wdio": "wdio run wdio.conf.ts"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@wdio/cli": "^7.2.3",
"@wdio/config": "^7.2.1",
"@wdio/cucumber-framework": "^7.2.1",
"@wdio/local-runner": "^7.2.3",
"@wdio/selenium-standalone-service": "^7.2.1",
"@wdio/spec-reporter": "^7.2.1",
"@wdio/static-server-service": "^7.2.1",
"@wdio/sync": "^7.2.3",
"chromedriver": "^90.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-wdio": "^6.0.8",
"http-server": "^0.12.1",
"jest": "^26.2.2",
"jest-circus": "^26.6.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"wdio-chromedriver-service": "^7.0.0",
"webdriverio": "^7.0.7"
}
}