-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
70 lines (70 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "cucumber-playwright",
"version": "3.0.0",
"description": "Starter project to write and debug cucumber-js features with Playwright",
"main": "index.js",
"type": "module",
"scripts": {
"cucumber": "tsx node_modules/.bin/cucumber-js",
"api": "DEBUG=pw:api npm run cucumber",
"build": "rimraf build && npm run format && npm run lint && tsc && npm run cucumber-check",
"cucumber-check": "npm run cucumber features/**/*.feature --dry-run --require env/set-environment-variables.ts --require world/custom-world.ts --require step-definitions/**/*.ts --require hooks/**/*.ts --require-module ts-node/register --format-options \"{\\\"snippetInterface\\\": \\\"async-await\\\"}\" --format summary --format progress --format progress-bar --publish-quiet",
"debug": "PWDEBUG=1 DEBUG=pw:api npm run cucumber ",
"video": "PWVIDEO=1 npm run cucumber ",
"format": "prettier --write \"**/*.{ts,tsx,css,html}\" ",
"lint": "eslint",
"only": "npm run cucumber -- --tags @only",
"report": "open reports/report.html",
"snippets": "npm run cucumber features/**/*.feature --dry-run --format snippets",
"steps-usage": "tsx $(bin)/cucumber-js features/**/*.feature --dry-run",
"all": "npm run cucumber features/**/*.feature",
"test": "npm run cucumber ",
"test:parallel": "npm run cucumber --parallel=2",
"docker": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:latest /bin/bash",
"allure": "allure serve reports/allure-results"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tallyb/cucumber7-playwright.git"
},
"author": "Tally Barak",
"license": "ISC",
"bugs": {
"url": "https://github.com/tallyb/cucumber-playwright/issues"
},
"homepage": "https://github.com/tallyb/cucumber-playwright#readme",
"devDependencies": {
"@cucumber/cucumber": "11.1.1",
"@cucumber/html-formatter": "21.7.0",
"@cucumber/messages": "27.0.2",
"@cucumber/pretty-formatter": "1.0.1",
"@playwright/test": "1.49.1",
"@stylistic/eslint-plugin": "2.11.0",
"@types/fs-extra": "11.0.4",
"@types/node": "22.10.2",
"@types/pixelmatch": "5.2.6",
"@types/pngjs": "6.0.5",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"allure-cucumberjs": "3.0.7",
"cucumber-html-reporter": "7.2.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-prettier": "5.2.1",
"fs-extra": "11.2.0",
"multiple-cucumber-html-reporter": "3.8.0",
"open": "10.1.0",
"pixelmatch": "6.0.0",
"pngjs": "7.0.0",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsx": "4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0"
}
}