-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 2.42 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
{
"name": "wp-rocket-e2e",
"version": "1.0.0",
"description": "WP Rocket E2E Tests with Playwright",
"main": "playwright.config.ts",
"test": "./node_modules/@cucumber/cucumber/bin/cucumber-js -p default",
"config": {
"testCommand": "node ./node_modules/@cucumber/cucumber/bin/cucumber-js -p default"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test:e2e": "$npm_package_config_testCommand",
"test:smoke": "$npm_package_config_testCommand --tags @smoke",
"test:local": "$npm_package_config_testCommand --tags @local",
"test:online": "$npm_package_config_testCommand --tags @online",
"test:vr": "$npm_package_config_testCommand --tags @vr",
"test:llcssbg": "$npm_package_config_testCommand --tags @llcssbg",
"test:delayjs": "$npm_package_config_testCommand --tags @delayjs",
"test:lcp": "$npm_package_config_testCommand --tags @lcp",
"test:test": "$npm_package_config_testCommand --tags @test",
"test:lrc": "$npm_package_config_testCommand --tags @lrc",
"test:cpcss": "$npm_package_config_testCommand --tags @cpcss",
"test:performancehints": "$npm_package_config_testCommand --tags @performancehints",
"healthcheck": "ts-node healthcheck.ts",
"wp-env": "wp-env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wp-media/wp-rocket-e2e.git"
},
"author": "WP Media",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^9.1.2",
"@playwright/test": "^1.32.3",
"@types/backstopjs": "^6.1.1",
"@types/cucumber": "^7.0.0",
"@types/json-diff": "^1.0.0",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@wordpress/env": "^8.4.0",
"eslint": "^8.45.0",
"eslint-plugin-es5": "^1.5.0",
"multiple-cucumber-html-reporter": "^3.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/wp-media/wp-rocket-e2e/issues"
},
"homepage": "https://github.com/wp-media/wp-rocket-e2e#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/ssh2": "^1.11.13",
"axios": "^1.6.8",
"backstopjs": "^6.2.2",
"boxen": "^7.1.1",
"chalk": "^4.1.2",
"json-diff": "^1.0.6",
"node-ssh": "^13.1.0",
"node-zip": "^1.0.1",
"playwright": "^1.34.3",
"shelljs": "^0.8.5",
"ssh2": "^1.14.0",
"ts-pattern": "^5.0.5"
}
}