-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.99 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
71
72
73
74
75
{
"name": "cucumber-playwright",
"version": "1.2.0",
"description": "Starter project to write and debug cucumber-js features with Playwright",
"main": "index.js",
"scripts": {
"api": "DEBUG=pw:api cucumber-js",
"build": "rimraf build && npm run format && npm run lint && tsc && npm run cucumber-check",
"cucumber-check": "cucumber-js 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 cucumber-js",
"video": "PWVIDEO=1 cucumber-js",
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"eslint-init": "eslint --init",
"format": "prettier --write \"**/*.{ts,tsx,css,html}\" ",
"lint": "eslint ./ --ext .js,.ts,.tsx --format visualstudio --no-color --report-unused-disable-directives",
"only": "npm run cucumber -- --tags @only",
"report": "open reports/report.html",
"snippets": "cucumber-js features/**/*.feature --dry-run --format snippets",
"steps-usage": "cucumber-js features/**/*.feature --dry-run",
"all": "cucumber-js features/**/*.feature",
"test": "cucumber-js",
"test:parallel": "cucumber-js --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",
"dependencies": {
"@cucumber/cucumber": "8.2.0",
"@cucumber/html-formatter": "19.1.0",
"@cucumber/messages": "^18.0.0",
"@cucumber/pretty-formatter": "1.0.0-alpha.2",
"@playwright/test": "^1.21.1",
"@types/fs-extra": "9.0.13",
"axios": "0.27.2",
"cucumber-console-formatter": "1.0.0",
"cucumber-html-reporter": "5.5.0",
"pixelmatch": "5.3.0",
"playwright": "^1.21.1",
"pngjs": "6.0.0"
},
"devDependencies": {
"@types/expect": "24.3.0",
"@types/fs-extra": "9.0.13",
"@types/lodash": "4.14.182",
"@types/node": "16.11.33",
"@types/pixelmatch": "5.2.4",
"@types/pngjs": "6.0.1",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"allure-cucumberjs8": "2.0.0-beta.15",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"fs-extra": "10.1.0",
"open": "8.4.0",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"standard-version": "9.3.2",
"ts-node": "10.7.0",
"typescript": "4.6.4"
}
}