-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.72 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
{
"name": "woocommerce-product-addon",
"version": "33.0.10",
"description": "PPOM for WooCommerce",
"main": "index.js",
"repository": "https://github.com/Codeinwp/woocommerce-product-addon",
"author": "Themeisle <[email protected]>",
"license": "GPL-2.0+",
"plugin": {
"textdomain": "woocommerce-product-addon"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@wordpress/e2e-test-utils-playwright": "^1.9.0",
"@wordpress/env": "^10.9.0",
"@wordpress/scripts": "27.9.0",
"conventional-changelog-simple-preset": "^1.0.20",
"grunt": "^1.5.3",
"grunt-version": "^3.0.0",
"grunt-wp-i18n": "^1.0.3",
"grunt-wp-readme-to-markdown": "^2.1.0",
"load-project-config": "^0.2.1",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.3.5",
"semantic-release": "^19.0.3",
"semantic-release-slack-bot": "^3.5.3"
},
"scripts": {
"build": "npm-run-all build:*",
"dist": "bash ./bin/dist.sh",
"release": "npx semantic-release",
"build:makepot": "bash ./bin/makepot.sh",
"build:grunt": "grunt build",
"grunt": "grunt",
"wp-env": "wp-env",
"env:after:setup": "bash ./bin/e2e-after-setup.sh",
"test:e2e": "wp-scripts test-playwright --config tests/e2e/playwright.config.js",
"test:e2e:debug": "wp-scripts test-playwright --config tests/e2e/playwright.config.js --ui",
"test:unit:php:setup": "wp-env start",
"test:unit:php:setup:debug": "wp-env start --xdebug",
"test:unit:php": "wp-env run --env-cwd='wp-content/plugins/woocommerce-product-addon' tests-wordpress vendor/bin/phpunit -c phpunit.xml --verbose"
}
}