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
·63 lines (63 loc) · 2.66 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 2.66 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
{
"name": "wp-bootstrap-blocks",
"version": "3.1.3",
"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": "^5.2.9",
"@wordpress/blocks": "^7.0.5",
"@wordpress/components": "^12.0.7",
"@wordpress/compose": "^3.24.4",
"@wordpress/data": "^4.26.7",
"@wordpress/editor": "^9.25.9",
"@wordpress/element": "^2.19.1",
"@wordpress/hooks": "^2.11.1",
"@wordpress/i18n": "^3.18.0"
},
"devDependencies": {
"@wordpress/base-styles": "^3.4.0",
"@wordpress/e2e-test-utils": "^5.1.0",
"@wordpress/env": "^4.0.0",
"@wordpress/scripts": "^14.0.1",
"lodash": "^4.17.21",
"prettier": "npm:wp-prettier@2.2.1-beta-1"
},
"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",
"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 && npm run lint:md-js",
"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:md-js": "wp-scripts lint-md-js",
"lint:md-js-fix": "wp-scripts lint-md-js --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "npm run wp-env run composer run-script lint",
"test:e2e": "wp-scripts test-e2e -c ./e2e-tests/jest.config.js",
"test:e2e-interactive": "wp-scripts test-e2e -c ./e2e-tests/jest.config.js --puppeteer-interactive",
"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'"
}
}