-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 1008 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "Marco Di Bella - Call to Action (CTA)",
"version": "2.1.5",
"description": "Development Scripts",
"config" : {
"SASS_SRC": "./assets/src/css",
"SASS_BLD": "./assets/build/css",
"PLUGIN_NAME": "mdb-call-to-action"
},
"scripts": {
"sass:metabox": "sass --style=compressed --no-source-map $npm_package_config_SASS_SRC/metabox.scss $npm_package_config_SASS_BLD/metabox.min.css",
"sass:post-type": "sass --style=compressed --no-source-map $npm_package_config_SASS_SRC/post-type.scss $npm_package_config_SASS_BLD/post-type.min.css",
"sass:frontend": "sass --style=compressed --no-source-map $npm_package_config_SASS_SRC/frontend.scss $npm_package_config_SASS_BLD/frontend.min.css",
"sass:all": "npm run sass:metabox && npm run sass:post-type && npm run sass:frontend",
"make:pot": "wp i18n make-pot . ./languages/$npm_package_config_PLUGIN_NAME.pot"
},
"devDependecies": {
"sass": "^1.59.3"
}
}