-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "pootle-page-builder",
"version": "5.7.4",
"description": "",
"author": "Shramee",
"license": "GPL-3.0",
"main": "README.txt",
"keywords": [
"sass",
"grunt",
"autoprefixer"
],
"devDependencies": {
"@wordpress/env": "^10.10.0",
"bestzip": "^2.2.1",
"grunt": "~0.4.5",
"grunt-autoprefixer": "~3.0.4",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-sass": "~1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-newer": "1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server:start": "npx wp-env start",
"server:stop": "npx wp-env stop",
"server:destroy": "npx wp-env destroy",
"zip": "npm run zip:mkdir && bestzip $npm_package_name-premium.$npm_package_version.zip ./$npm_package_name/* && npm run zip:rmdir",
"zip:mkdir": "mkdir $npm_package_name && cp -r css inc js lang ppbpro tpl wp-sdk pootle-page-builder.php readme.txt run-on-uninstall.php license.txt ./$npm_package_name",
"zip:rmdir": "rm -r ./$npm_package_name"
}
}