-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
68 lines (68 loc) · 2.07 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
{
"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": "[email protected]",
"role": "Company"
},
{
"name": "Mollie B.V.",
"email": "[email protected]"
}
],
"homepage": "https://github.com/mollie/WooCommerce",
"main": "gulpfile.js",
"repository": {
"type": "git",
"url": "[email protected]:mollie/WooCommerce.git"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.14.5",
"@playwright/test": "^1.33.0",
"@symfony/webpack-encore": "^4.5.0",
"@woocommerce/dependency-extraction-webpack-plugin": "^1.7.0",
"@wordpress/data": "^6.1.5",
"@wordpress/element": "^4.0.4",
"date-and-time": "^0.14.0",
"del": "^3.0.0",
"dotenv": "^16.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.0.1",
"gulp-help-doc": "^1.1.1",
"gulp-rename": "^2.0",
"gulp-zip": "^4.2.0",
"minimist": "^1.2.3",
"pump": "^3.0.0",
"sass": "^1.52.1",
"sass-loader": "^7.0.1",
"webpack-cli": "^5.1.4",
"wp-pot": "^1.10.2",
"webpack": "^5.89.0"
},
"scripts": {
"watch": "BASE_PATH=. node_modules/.bin/encore dev --watch",
"build": "BASE_PATH=. node_modules/.bin/encore dev",
"setup": "gulp setup",
"e2e-activation": "npx playwright test --project=activation",
"e2e-simple": "npx playwright test --project=simple-classic",
"e2e-block": "npx playwright test --project=simple-block",
"e2e-cart-paypal": "npx playwright test --project=cart-paypal",
"e2e-product-paypal": "npx playwright test --project=product-paypal",
"e2e-simple-settings": "npx playwright test --project=simple-settings",
"e2e-full-settings": "npx playwright test --project=full-settings",
"e2e-all": "npx playwright test"
}
}