-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.07 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.07 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
{
"version": "1.0.3",
"name": "ultimate-multisite-mailster",
"title": "Ultimate Multisite: Mailster Integration",
"homepage": "https://multisiteultimate.com/",
"authors": [{
"name": "David Stone",
"email": "david@multisiteultimate.com"
}],
"repository": {
"type": "git",
"url": "git://github.com/multisite-ultimate/ultimate-multisite-mailster.git"
},
"devDependencies": {
"clean-css-cli": "^5.6.3",
"uglify-js": "^3.19.3"
},
"config": {
"translate": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:watch": "vendor/bin/phpunit --testdox",
"prebuild": "composer install -o --no-dev",
"build": "npm run archive",
"archive": "composer archive --file=$npm_package_name --format=zip",
"postarchive": "rm -rf $npm_package_name && unzip $npm_package_name.zip -d $npm_package_name && rm $npm_package_name.zip && zip -r $npm_package_name.zip $npm_package_name && rm -rf $npm_package_name",
"makepot": "wp i18n make-pot ./ lang/$npm_package_name.pot --exclude=node_modules,tests,docs,assets/js/lib,vendor"
}
}