forked from Tallyb/cucumber-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.53 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
{
"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"
},
"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": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"@cucumber/html-formatter": "16.0.1",
"cucumber-console-formatter": "1.0.0",
"cucumber-pretty": "^6.0.0",
"cucumber-html-reporter": "^5.4.0",
"expect": "27.0.6",
"playwright": "^1.13.0"
},
"devDependencies": {
"@types/expect": "24.3.0",
"@types/lodash": "4.14.171",
"@types/node": "16.4.1",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"rimraf": "3.0.2",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "^7.24.0",
"open": "^8.2.1",
"prettier": "2.3.2",
"standard-version": "^9.3.1",
"ts-node": "^10.1.0",
"typescript": "4.3.5"
}
}