-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 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
43
{
"name": "bp-blocks",
"version": "12.0.0-alpha",
"description": "BuddyPress Blocks development plugin.",
"engines": {
"node": ">=14.15.0",
"npm": ">=6.14.8"
},
"scripts": {
"wpcs": "composer run do:wpcs",
"phpcompat": "composer run phpcompat",
"pot:addon": "wp i18n make-pot add-ons/${npm_config_slug} add-ons/${npm_config_slug}/languages/${npm_config_slug}.pot --domain=${npm_config_slug} --exclude=\"assets,css,languages\" --headers='{\"Report-Msgid-Bugs-To\": \"https://github.com/buddypress/bp-blocks/issues\", \"Last-Translator\": \"imath <[email protected]>\"}'",
"po2json:addon": "wp i18n make-json add-ons/${npm_config_slug}/languages",
"package:addon": "./bin/build-block-zip.sh ${npm_config_slug}",
"move-addon-assets": "./bin/move-addon-assets.sh ${npm_config_slug}",
"webpack:build": "wp-scripts build",
"lint:css:src": "wp-scripts lint-style './src/**/*.scss'",
"packages-update": "wp-scripts packages-update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buddypress/bp-blocks.git"
},
"keywords": [
"buddypress",
"blocks"
],
"author": "The BuddyPress Contributors",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/buddypress/bp-blocks/issues"
},
"homepage": "https://github.com/buddypress/bp-blocks#readme",
"devDependencies": {
"@wordpress/babel-preset-default": "^7.12.0",
"@wordpress/browserslist-config": "^5.11.0",
"@wordpress/scripts": "^26.19.0",
"postcss": "^8.4.31"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}