-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·71 lines (71 loc) · 3.09 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
{
"name": "wp-bootstrap-blocks",
"version": "6.0.1",
"private": true,
"description": "Bootstrap Gutenberg Blocks for WordPress",
"author": "Jürg Hunziker",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor",
"Gutenberg",
"Bootstrap",
"Blocks"
],
"homepage": "https://github.com/tschortsch/bootstrap-blocks-wordpress-plugin",
"repository": "git+https://github.com/tschortsch/bootstrap-blocks-wordpress-plugin.git",
"bugs": {
"url": "https://github.com/tschortsch/bootstrap-blocks-wordpress-plugin/issues"
},
"dependencies": {
"@wordpress/block-editor": "^15.19.0",
"@wordpress/blocks": "^15.19.0",
"@wordpress/components": "^33.1.0",
"@wordpress/compose": "^7.46.0",
"@wordpress/data": "^10.46.0",
"@wordpress/element": "^6.46.0",
"@wordpress/hooks": "^4.46.0",
"@wordpress/i18n": "^6.19.0",
"bootstrap": "^5.3.8",
"sass": "^1.100.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@wordpress/base-styles": "^8.0.0",
"@wordpress/browserslist-config": "^6.46.0",
"@wordpress/e2e-test-utils-playwright": "^1.46.0",
"@wordpress/env": "^11.6.0",
"@wordpress/eslint-plugin": "^25.2.0",
"@wordpress/prettier-config": "^4.46.0",
"@wordpress/scripts": "^32.2.0",
"eslint": "^10.4.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-prettier": "^5.5.5",
"lodash": "^4.18.1",
"prettier": "npm:wp-prettier@3.0.3"
},
"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",
"test:unit:php:ci": "wp-env run tests-cli phpunit -- -c /var/www/html/wp-content/plugins/bootstrap-blocks-wordpress-plugin/phpunit.xml.dist"
}
}