-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.26 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.26 KB
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
{
"name": "playwright_eschaton",
"private": true,
"version": "0.0.0",
"author": "Jeff Nyman <jeffnyman@gmail.com> (https://testerstories.com)",
"description": "A Pedagogical Pastiche of Playwright Programming",
"license": "MIT",
"scripts": {
"test": "npm run clean && npm run pretest && npm run tests && npm run specs && npm run specs:dashboard",
"clean": "npx rimraf results",
"specs:dashboard:show": "npx open-cli results/reports/index.html",
"specs:dashboard": "npx ts-node support/cucumber/report.ts",
"specs:report": "npx open-cli results/spec-report.html",
"specs:dryrun": "npx cucumber-js test --dry-run",
"specs:rerun": "npx cucumber-js -p rerun @rerun.txt",
"specs": "cross-env ENV=prod npx cucumber-js test",
"test:weather:postman": "node ./tests-supplement/weather/newman/weather.postman.test.mjs",
"test:weather:pw": "npx playwright test --project=\"Weather API Tests\"",
"test:weather:jest": "jest",
"tests": "npx playwright test",
"pretest": "npx ts-node support/init.ts",
"report:pw": "npx playwright show-report results",
"lint:fix": "npx eslint . --fix",
"lint": "npx eslint .",
"format:fix": "npx prettier . --write",
"format": "npx prettier . --check"
},
"keywords": [
"testing",
"playwright",
"cucumber",
"api",
"ui"
],
"repository": {
"type": "git",
"url": "https://github.com/jeffnyman/playwright-eschaton.git"
},
"bugs": {
"url": "https://github.com/jeffnyman/playwright-eschaton/issues"
},
"homepage": "https://github.com/jeffnyman/playwright-eschaton#readme",
"devDependencies": {
"@cucumber/cucumber": "^10.9.0",
"@eslint/js": "^9.9.0",
"@playwright/test": "^1.46.1",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.2",
"axios": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.9.0",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"multiple-cucumber-html-reporter": "^3.7.0",
"newman": "^6.2.1",
"open-cli": "^8.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"winston": "^3.14.2"
}
}