-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.03 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.03 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
{
"name": "simple-gravatar",
"version": "1.0.1",
"description": "Simple Gravatar Block for WordPress",
"scripts": {
"build": "wp-scripts build --output-path=dist",
"start": "wp-scripts start --output-path=dist",
"release": "node scripts/release.js",
"lint:js": "wp-scripts lint-js src/",
"lint:scss": "wp-scripts lint-style '**/*.scss'",
"lint:php": "composer lint",
"lint": "npm run lint:js && npm run lint:scss && npm run lint:php",
"format:js": "wp-scripts format src/",
"format:scss": "wp-scripts lint-style '**/*.scss' --fix",
"format": "npm run format:js && npm run format:scss"
},
"license": "GPL-2.0-or-later",
"devDependencies": {
"@wordpress/scripts": "^27.5.0",
"@wordpress/stylelint-config": "^21.0.0",
"archiver": "^5.3.1"
},
"dependencies": {
"@wordpress/block-editor": "^12.15.0",
"@wordpress/blocks": "^12.24.0",
"@wordpress/components": "^25.13.0",
"@wordpress/element": "^5.24.0",
"@wordpress/i18n": "^4.47.0",
"@wordpress/icons": "^9.42.0"
}
}