-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "serenity-js-cucumber-playwright-template",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "serenity-bdd update",
"clean": "rimraf target",
"test": "failsafe clean test:execute test:report",
"test:execute": "cucumber-js",
"test:report": "serenity-bdd run --features ./features",
"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-cucumber-playwright-template.git"
},
"keywords": [
"serenity-js",
"bdd",
"cucumber",
"testing",
"playwright",
"playwright-test"
],
"author": "Jan Molak <jan.molak@smartcodeltd.co.uk>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/serenity-js/serenity-js-cucumber-playwright-template/issues"
},
"homepage": "https://serenity-js.org",
"engines": {
"node": "^18.12 || ^20"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@serenity-js/assertions": "^3.29.5",
"@serenity-js/console-reporter": "^3.29.5",
"@serenity-js/core": "^3.29.5",
"@serenity-js/cucumber": "^3.29.5",
"@serenity-js/playwright": "^3.29.5",
"@serenity-js/rest": "^3.29.5",
"@serenity-js/serenity-bdd": "^3.29.5",
"@serenity-js/web": "^3.29.5",
"@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",
"is-ci": "^3.0.1",
"npm-failsafe": "^1.3.0",
"http-server": "^14.1.1",
"mkdirp": "^3.0.1",
"playwright": "^1.48.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}