-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.93 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.93 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
69
70
71
72
73
74
75
76
{
"name": "mollie-payments-for-woocommerce",
"version": "5.6.1",
"license": "GPL-2.0-or-later",
"description": "Accept payments in WooCommerce with the official Mollie plugin",
"keywords": [
"Mollie",
"WooCommerce",
"WordPress"
],
"authors": [
{
"name": "Syde GmbH",
"homepage": "https://syde.com/",
"email": "hello@syde.com",
"role": "Company"
},
{
"name": "Mollie B.V.",
"email": "info@mollie.com"
}
],
"homepage": "https://github.com/mollie/WooCommerce",
"repository": {
"type": "git",
"url": "git@github.com:mollie/WooCommerce.git"
},
"devDependencies": {
"@playwright/test": "^1.50",
"@woocommerce/dependency-extraction-webpack-plugin": "3.0.1",
"@wordpress/scripts": "^30.24.0",
"wp-pot": "^1.10.2",
"dotenv": "^16.3.1",
"mollie-api-typescript": "^1.0.2",
"playwright": "^1.40.1",
"yarn": "^1.22.21",
"@types/node": "^20.8.4",
"@wordpress/env": "^10.30.0"
},
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"lint:md": "wp-scripts lint-md-docs *.md",
"lint:js": "wp-scripts lint-js resources/js/src/*",
"lint:style": "wp-scripts lint-style resources/scss/*.scss",
"lint:js:fix": "wp-scripts lint-js resources/js/src/* --fix",
"lint:style:fix": "wp-scripts lint-style resources/scss/*.scss --fix",
"lint:php": "yarn phpcs && yarn psalm",
"lint:php-fix": "vendor/bin/phpcbf --parallel=8",
"e2e:lint:md:fix": "wp-scripts lint-md-docs --fix ./tests/qa/**/*.md README.md",
"e2e:lint:js:fix": "wp-scripts lint-js --resolve-plugins-relative-to ./tests/qa --fix --ext .ts,.tsx,.mjs ./tests/qa",
"e2e:setup:hosts": "echo '127.0.0.1 mywp.site' | sudo tee -a /etc/hosts",
"e2e:setup:env": "npm run e2e:setup:hosts && npm install && npx wp-env start --update",
"e2e:setup:tests": "npm install && npx playwright install",
"e2e:watch:utils": "npm run e2e:setup:tests && cd .tests/qa/playwright-utils && yarn devLocal",
"e2e:setup:wc:default": "npx playwright test woocommerce.setup",
"e2e:setup:checkout:block": "npx playwright test --grep=\"setup:checkout:block;\"",
"e2e:setup:checkout:classic": "npx playwright test --grep=\"setup:checkout:classic;\"",
"e2e:setup:tax:inc": "npx playwright test --grep=\"setup:tax:inc;\"",
"e2e:setup:tax:exc": "npx playwright test --grep=\"setup:tax:exc;\"",
"e2e:setup:mollie:germany": "npx playwright test --grep \"setup:mollie:germany;\"",
"e2e:test:all": "npx playwright test --project=all --workers=1",
"e2e:test:critical": "npx playwright test --project=all --workers=1 --grep \"@Critical\"",
"e2e:test:refund": "npx playwright test --project=refund --workers=4"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"rules": {
"@wordpress/dependency-group": "error",
"@wordpress/no-unsafe-wp-apis": "off",
"no-console": "off"
}
}
}