forked from buddypress/buddypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 4.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"author": "The BuddyPress Contributors",
"bugs": {
"url": "https://buddypress.trac.wordpress.org/"
},
"description": "BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!",
"devDependencies": {
"@babel/core": "~7.18.2",
"@wordpress/babel-preset-default": "^6.11.0",
"@wordpress/browserslist-config": "~4.1.0",
"@wordpress/env": "^4.7.0",
"@wordpress/stylelint-config": "~19.1.0",
"autoprefixer": "^9.8.6",
"grunt": "^1.5.3",
"grunt-check-dependencies": "~1.0.0",
"grunt-checktextdomain": "~1.0.1",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-imagemin": "~4.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "~5.2.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-exec": "^3.0.0",
"grunt-jsvalidate": "~0.2.2",
"grunt-legacy-util": "^2.0.1",
"grunt-patch-wordpress": "~3.0.1",
"grunt-postcss": "~0.9.0",
"grunt-rtlcss": "~2.0.2",
"grunt-sass": "~3.1.0",
"grunt-stylelint": "~0.16.0",
"matchdep": "~2.0.0",
"node-sass": "~6.0.1",
"parcel-bundler": "~1.12.5",
"phplint": "~2.0.5",
"postcss": "~8.3.6",
"postcss-scss": "~4.0.0",
"stylelint": "~13.13.1"
},
"engines": {
"node": ">=14.15.0",
"npm": ">=6.14.8"
},
"scripts": {
"start": "npm run dev:components && npm run dev:assets && parcel watch src/js/bp-*/*s/blocks/*.js --out-dir src --no-source-maps",
"dev": "npm run dev:components && npm run dev:assets && npm run dev:scripts && npm run dev:admin-scripts && parcel build src/js/bp-*/*s/blocks/*.js --out-dir src --no-source-maps --no-minify",
"build": "npm run build:components && npm run build:assets && npm run build:scripts && npm run build:admin-scripts && parcel build src/js/bp-*/*s/blocks/*.js --out-dir build",
"watch:components": "parcel watch src/js/bp-core/js/block-components/block-components.js --out-dir src/bp-core/js --out-file block-components.js --no-source-maps --global bpBlock",
"dev:components": "parcel build src/js/bp-core/js/block-components/block-components.js --out-dir src/bp-core/js --out-file block-components.js --no-source-maps --no-minify --global bpBlock",
"build:components": "parcel build src/js/bp-core/js/block-components/block-components.js --out-dir build/bp-core/js --out-file block-components.js --global bpBlock",
"watch:assets": "parcel watch src/js/bp-core/js/block-assets/*.js --out-dir src/bp-core/js --no-source-maps --global bpBlock",
"dev:assets": "parcel build src/js/bp-core/js/block-assets/*.js --out-dir src/bp-core/js --no-source-maps --no-minify --global bpBlock",
"build:assets": "parcel build src/js/bp-core/js/block-assets/*.js --out-dir build/bp-core/js --global bpBlock",
"dev:scripts": "parcel build src/js/bp-*/*s/* --out-dir src --no-source-maps --no-minify",
"build:scripts": "parcel build src/js/bp-*/*s/* --out-dir build",
"dev:admin-scripts": "parcel build src/js/bp-*/admin/*s/* --out-dir src --no-source-maps --no-minify",
"build:admin-scripts": "parcel build src/js/bp-*/admin/*s/* --out-dir build",
"wp-env": "wp-env",
"test-php": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.xml'",
"test-php:group": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.xml --group $npm_confi_g'",
"test-php-multisite": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.multisite.xml'",
"test-php-multisite:group": "npm run wp-env run phpunit 'php /var/www/html/wp-content/plugins/buddypress/vendor/phpunit/phpunit/phpunit -c /var/www/html/wp-content/plugins/buddypress/tests/phpunit/env.multisite.xml --group $npm_confi_g'"
},
"keywords": [
"activity",
"community",
"friends",
"groups",
"messaging",
"notifications",
"profiles",
"social network"
],
"homepage": "https://buddypress.org",
"license": "GPL-2.0-or-later",
"name": "buddypress",
"repository": {
"type": "svn",
"url": "https://buddypress.svn.wordpress.org/trunk/"
},
"version": "11.0.0-alpha",
"browserslist": [
"extends @wordpress/browserslist-config"
]
}