-
-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
60 lines (60 loc) · 1.92 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
{
"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",
"type": "module",
"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.cjs --detectOpenHandles",
"test:features": "wdio run wdio.BUILD.conf.ts",
"wdio": "wdio run wdio.BUILD.conf.ts"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@wdio/cli": "9.1.2",
"@wdio/config": "9.1.2",
"@wdio/cucumber-framework": "9.1.2",
"@wdio/globals": "9.1.2",
"@wdio/local-runner": "9.1.2",
"@wdio/spec-reporter": "9.1.2",
"@wdio/static-server-service": "9.1.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-wdio": "^9.0.8",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"npm-run-all2": "^6.2.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webdriverio": "9.1.2"
}
}