-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.04 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
64
65
66
67
68
{
"name": "serenity-js-mocha-webdriverio-template",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf target",
"test": "failsafe clean test:execute test:report",
"test:execute": "wdio wdio.conf.ts",
"test:report": "serenity-bdd run --features ./test/specs",
"start": "mkdirp target/site/serenity && npx http-server -p 8080 target/site/serenity -s -o",
"lint": "eslint --ext ts --config .eslintrc.js .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serenity-js/serenity-js-mocha-webdriverio-template.git"
},
"keywords": [
"serenity-js",
"bdd",
"mocha",
"testing",
"webdriverio"
],
"author": "Jan Molak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serenity-js/serenity-js/issues"
},
"homepage": "https://serenity-js.org",
"engines": {
"node": "^18.12 || ^20 || ^22"
},
"dependencies": {
"@serenity-js/assertions": "^3.31.0",
"@serenity-js/console-reporter": "^3.31.0",
"@serenity-js/core": "^3.31.0",
"@serenity-js/mocha": "^3.31.0",
"@serenity-js/rest": "^3.31.0",
"@serenity-js/serenity-bdd": "^3.31.0",
"@serenity-js/web": "^3.31.0",
"@serenity-js/webdriverio": "^3.31.0",
"@wdio/cli": "^9.4.2",
"@wdio/globals": "^9.4.2",
"@wdio/local-runner": "^9.4.2",
"@wdio/spec-reporter": "^9.4.2",
"mocha": "^11.0.1",
"webdriverio": "^9.4.2"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"http-server": "^14.1.1",
"mkdirp": "^3.0.1",
"npm-failsafe": "^1.3.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}