This repository has been archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.51 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
{
"name": "gutenberg-bento",
"private": true,
"description": "An exploratory plugin for using Bento components in Gutenberg",
"repository": {
"type": "git",
"url": "git+https://github.com/swissspidy/gutenberg-bento.git"
},
"author": "swissspidy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/swissspidy/gutenberg-bento/issues"
},
"homepage": "https://github.com/swissspidy/gutenberg-bento#readme",
"dependencies": {
"@bentoproject/base-carousel": "1.2112231523.2",
"@wordpress/blob": "^3.4.1",
"@wordpress/block-editor": "^8.3.1",
"@wordpress/blocks": "^11.3.1",
"@wordpress/components": "^19.6.1",
"@wordpress/data": "^6.3.0",
"@wordpress/element": "^4.0.0",
"@wordpress/i18n": "^4.4.1",
"@wordpress/primitives": "^3.1.0"
},
"devDependencies": {
"@wordpress/scripts": "^22.2.1"
},
"scripts": {
"build": "wp-scripts build src/carousel/bento-base-carousel.js src/carousel/carousel.js src/carousel/carousel.view.js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:php": "composer lint",
"start": "wp-scripts start src/carousel/bento-base-carousel.js src/carousel/carousel.js src/carousel/carousel.view.js",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:help": "wp-scripts test-e2e --help",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e --puppeteer-devtools",
"wp-env": "wp-env"
}
}