forked from tschortsch/bootstrap-blocks-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 2.78 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 2.78 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
{
"name": "wp-bootstrap-blocks",
"version": "5.1.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": "^11.6.0",
"@wordpress/blocks": "^12.6.0",
"@wordpress/components": "^23.6.0",
"@wordpress/data": "^8.6.0",
"@wordpress/element": "^5.6.0",
"@wordpress/hooks": "^3.29.0",
"@wordpress/i18n": "^4.29.0",
"bootstrap": "^5.2.3",
"sass": "^1.59.3"
},
"devDependencies": {
"@cypress/snapshot": "^2.1.7",
"@cypress/xpath": "^2.0.3",
"@wordpress/base-styles": "^4.20.0",
"@wordpress/env": "^5.14.0",
"@wordpress/scripts": "^26.0.0",
"cypress": "^12.8.1",
"cypress-wp-test-utils": "^1.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"lodash": "^4.17.21",
"prettier": "npm:wp-prettier@2.6.2"
},
"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": "npm run wp-env run composer run-script lint",
"test:e2e": "cypress run",
"test:e2e-interactive": "npm run cy:open",
"test:unit:js": "wp-scripts test-unit-js",
"test:unit:php": "npm run wp-env run phpunit 'phpunit -c /var/www/html/wp-content/plugins/wp-bootstrap-blocks/phpunit.xml.dist --verbose'",
"test:unit:php:ci": "npm run wp-env run phpunit 'phpunit -c /var/www/html/wp-content/plugins/bootstrap-blocks-wordpress-plugin/phpunit.xml.dist --verbose'",
"cy:run": "cypress run",
"cy:open": "cypress open"
}
}