-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.93 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
{
"name": "wp-bootstrap-blocks",
"version": "5.2.0",
"private": true,
"description": "Bootstrap Gutenberg Blocks for WordPress",
"author": "Liip AG",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor",
"Gutenberg",
"Bootstrap",
"Blocks"
],
"homepage": "https://github.com/liip/bootstrap-blocks-wordpress-plugin",
"repository": "git+https://github.com/liip/bootstrap-blocks-wordpress-plugin.git",
"bugs": {
"url": "https://github.com/liip/bootstrap-blocks-wordpress-plugin/issues"
},
"dependencies": {
"@wordpress/block-editor": "^12.14.0",
"@wordpress/blocks": "^12.23.0",
"@wordpress/components": "^25.12.0",
"@wordpress/data": "^9.16.0",
"@wordpress/element": "^5.23.0",
"@wordpress/hooks": "^3.46.0",
"@wordpress/i18n": "^4.46.0",
"bootstrap": "^5.3.2",
"sass": "^1.69.5"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@wordpress/base-styles": "^4.37.0",
"@wordpress/browserslist-config": "^5.29.0",
"@wordpress/e2e-test-utils-playwright": "^0.14.0",
"@wordpress/env": "^8.12.0",
"@wordpress/eslint-plugin": "^17.3.0",
"@wordpress/scripts": "^26.17.0",
"eslint-plugin-prettier": "^5.0.1",
"lodash": "^4.17.21",
"prettier": "npm:[email protected]"
},
"scripts": {
"start": "wp-scripts start src/index.js src/settings/settings.js",
"dev": "npm run start",
"prebuild": "npm run check-engines",
"build": "wp-scripts build src/index.js src/settings/settings.js",
"build-theme-assets": "sass test-themes/bootstrap/bootstrap-with-cssgrid.scss test-themes/bootstrap/bootstrap-with-cssgrid.css",
"update-translations": "scripts/translations/extract-messages.sh && scripts/translations/update-translation-files.sh && scripts/translations/compile-translation-files.sh",
"wp-env": "wp-env",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"lint": "npm run lint:pkg-json && npm run lint:css && npm run lint:js && npm run lint:md-docs",
"lint:css": "wp-scripts lint-style 'src/**/*.scss'",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix",
"lint:md-docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "wp-env run --env-cwd='wp-content/plugins/wp-bootstrap-blocks' cli composer run-script lint",
"lint:php:ci": "wp-env run --env-cwd='wp-content/plugins/bootstrap-blocks-wordpress-plugin' cli composer run-script lint",
"test:e2e": "wp-scripts test-playwright",
"test:e2e-interactive": "wp-scripts test-playwright --ui",
"test:unit:js": "wp-scripts test-unit-js",
"test:unit:php": "wp-env run tests-cli phpunit -- -c /var/www/html/wp-content/plugins/wp-bootstrap-blocks/phpunit.xml.dist --verbose",
"test:unit:php:ci": "wp-env run tests-cli phpunit -- -c /var/www/html/wp-content/plugins/bootstrap-blocks-wordpress-plugin/phpunit.xml.dist --verbose"
}
}