-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 1.04 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
{
"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/env": "^4.1.2",
"@wordpress/scripts": "^18.0.1",
"lerna": "^3.20.2"
},
"prettier": "@wordpress/prettier-config",
"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": "wp-env start",
"env:start:debug": "wp-env start --xdebug",
"env:stop": "wp-env stop",
"packages-update": "wp-scripts packages-update"
}
}