-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 961 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
35
36
37
{
"name": "meom-dodo",
"version": "1.1",
"description": "MEOM Dodo project",
"author": "MEOM Oy",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor"
],
"homepage": "https://github.com/MEOM/meom-dodo",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/MEOM/meom-dodo"
},
"bugs": "https://github.com/MEOM/meom-dodo/issues",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
},
"devDependencies": {
"@wordpress/blocks": "^8.0.2",
"@wordpress/dom-ready": "^2.13.2",
"@wordpress/scripts": "^14.1.1"
},
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"format:js": "wp-scripts format-js",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"start": "wp-scripts start"
}
}