-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (35 loc) · 1.18 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
{
"name": "cmb2-admin-extension",
"version": "1.0.4",
"description": "CMB2 Admin Extension adds a user interface for admins to create CMB2 meta boxes from the WordPress admin. Tested with the most current version of CMB2.",
"scripts": {
"sass": "sass scss/meta-box-fields.scss css/meta-box-fields.css --no-source-map",
"autoprefix": "postcss css/meta-box-fields.css --use autoprefixer -o css/meta-box-fields.css",
"minify-js": "terser js/meta-box-fields.js --compress --mangle --output js/min/meta-box-fields.min.js",
"build-css": "npm-run-all sass autoprefix",
"build": "npm-run-all build-css minify-js",
"watch": "npm-watch"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"sass": "^1.35.1",
"terser": "^5.7.1",
"npm-watch": "^0.6.0"
},
"watch": {
"sass": {
"patterns": ["scss/*.scss"],
"extensions": ["scss"]
},
"minify-js": {
"patterns": ["js/*.js", "!js/min/*.min.js"],
"extensions": ["js"]
}
},
"keywords": [],
"author": "",
"license": "ISC"
}