-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.52 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
{
"name": "demo-playwright-cucumberjs",
"version": "1.0.0",
"description": "Boilerplate for Playwright with CucumberJS",
"main": "index.js",
"scripts": {
"test": "cucumber-js --require-module @babel/register --require config/cucumber.conf.js --require features/step-definitions/**/*.js --format @cucumber/pretty-formatter",
"playwright": "playwright install",
"test:chrome": "set BROWSER=chrome && npm run test",
"test:firefox": "set BROWSER=firefox && npm run test",
"test:webkit": "set BROWSER=webkit && npm run test",
"lint": "eslint --ext .js . --fix",
"prettier": "prettier **/*.js --write",
"update": "yarn up '**'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spnraju/demo-playwright-cucumberjs.git"
},
"keywords": [
"Playwright",
"Cucumberjs",
"Boilerplate",
"E2E",
"end-to-end"
],
"author": "Padmanabha Raju Sagi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/spnraju/demo-playwright-cucumberjs/issues"
},
"homepage": "https://github.com/spnraju/demo-playwright-cucumberjs#readme",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@cucumber/cucumber": "^11.2.0",
"@cucumber/pretty-formatter": "^1.0.1",
"@playwright/test": "^1.49.1",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"playwright": "^1.49.1",
"prettier": "^3.4.2"
}
}