-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 968 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "growfund",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:themeum/growfund.git",
"license": "GPL-2.0-only",
"scripts": {
"build": "npm-run-all -s build:apps composer:install make:pot build:gulp",
"build:package": "npm-run-all -s build:apps composer:install make:pot build:gulp:zip",
"build:apps": "cd ./apps && yarn install && yarn build",
"build:gulp": "gulp",
"build:gulp:zip": "gulp zip",
"make:pot": "wp i18n make-pot ./wordpress/wp-content/plugins/growfund ./wordpress/wp-content/plugins/growfund/languages/growfund.pot --slug=growfund --domain=growfund --include='growfund.php,**/*.php,resources/dist/*.js' --exclude='vendor'",
"composer:install": "cd ./wordpress/wp-content/plugins/growfund && composer install --no-dev && composer dump-autoload -o"
},
"devDependencies": {
"gulp": "^5.0.1",
"gulp-clean": "^0.4.0",
"gulp-zip": "^6.1.0",
"npm-run-all": "^4.1.5"
}
}