PluginProbe ʕ •ᴥ•ʔ
Worldline Global Online Pay for WooCommerce / 2.5.22
Worldline Global Online Pay for WooCommerce v2.5.22
2.5.22 2.5.20 2.5.17 trunk 1.0.0 1.0.1 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.4.1 2.4.2 2.4.4 2.4.5 2.4.6 2.5.1 2.5.10 2.5.11 2.5.12 2.5.14 2.5.16 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9
worldline-for-woocommerce / package.json
worldline-for-woocommerce Last commit date
assets 1 week ago inc 1 week ago languages 1 week ago modules 1 week ago shared 1 week ago src 1 week ago vendor 1 week ago .eslintrc.js 1 week ago BUILD_INFO.txt 1 week ago LICENSE 1 week ago SECURITY.md 1 week ago class-plugin.php 1 week ago composer.json 1 week ago config.php 1 week ago package.json 1 week ago readme.txt 1 week ago tsconfig.json 1 week ago uninstall.php 1 week ago webpack.config.js 1 week ago worldline-for-woocommerce.php 1 week ago
package.json
56 lines
1 {
2 "name": "@inpsyde/worldline-for-woocommerce",
3 "version": "0.1.0",
4 "license": "GPL-2.0-or-later",
5 "engines": {
6 "node": ">=16"
7 },
8 "browserslist": [
9 "> 0.5%",
10 "Safari >= 8",
11 "Chrome >= 41",
12 "Firefox >= 43",
13 "Edge >= 14"
14 ],
15 "dependencies": {
16 "@woocommerce/currency": "^4.3.0",
17 "@woocommerce/settings": "^1.0.0",
18 "@wordpress/data": "^10.20.0",
19 "core-js": "^3.25.0"
20 },
21 "devDependencies": {
22 "@types/jquery": "^3.5.30",
23 "@types/react": "^19",
24 "@types/react-dom": "^19",
25 "@wordpress/eslint-plugin": "^21",
26 "@wordpress/scripts": "^30",
27 "eslint-import-resolver-custom-alias": "^1.3.2",
28 "npm-run-all": "^4.1.5",
29 "ts-loader": "^9.0.0",
30 "typescript": "^5"
31 },
32 "imports": {
33 "#shared/*": [
34 "./shared/ts/*.ts"
35 ]
36 },
37 "scripts": {
38 "ddev:setup": "ddev start && ddev orchestrate",
39 "ddev:reset": "ddev orchestrate -f",
40 "assets": "composer compile-assets --ignore-lock=*",
41 "install-deps": "composer install && yarn install",
42 "build": "wp-scripts build",
43 "build:dev": "wp-scripts build --mode development",
44 "watch": "wp-scripts start",
45 "lint:md": "wp-scripts lint-md-docs *.md",
46 "lint:js": "wp-scripts lint-js modules.local/*/resources/*",
47 "lint:style": "wp-scripts lint-style modules.local/*/resources/**/*.scss",
48 "lint:php": "yarn phpcs && yarn psalm",
49 "lint:php-fix": "vendor/bin/phpcbf --parallel=8",
50 "phpcs": "vendor/bin/phpcs --parallel=8 -s",
51 "psalm": "vendor/bin/psalm --show-info=false --threads=8 --diff",
52 "test": "yarn test:php:unit",
53 "test:php:unit": "vendor/bin/phpunit"
54 }
55 }
56