forked from WordPress/gutenberg-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 996 Bytes
/
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
{
"name": "gutenberg-examples",
"version": "1.1.0",
"private": true,
"description": "Gutenberg Examples",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor",
"Examples"
],
"homepage": "https://github.com/WordPress/gutenberg-examples/",
"repository": "git+https://github.com/WordPress/gutenberg-examples.git",
"bugs": {
"url": "https://github.com/WordPress/gutenberg-examples/issues"
},
"devDependencies": {
"@wordpress/components": "^9.5.0",
"@wordpress/scripts": "^9.0.0",
"lerna": "^3.20.2"
},
"scripts": {
"build": "lerna run build",
"lint:js": "lerna run lint:js",
"lint:pkg-json": "wp-scripts lint-pkg-json ./package.json ./*-esnext/package.json",
"format:js": "wp-scripts format-js",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "wp-scripts test-unit-js",
"env:start": "docker-compose up -d",
"env:stop": "docker-compose stop",
"packages-update": "wp-scripts packages-update"
}
}