-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.16 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
{
"name": "heightwind",
"version": "2.1.0",
"description": "HeightWind - A refreshingly simple WordPress theme.",
"author": "Matt Simpson",
"license": "GPL-2.0-or-later",
"scripts": {
"build:css": "sass style.scss style.css --no-source-map --style=expanded && sass framework/scss/editor-styles.scss framework/css/editor-styles.css --no-source-map --style=expanded",
"build:js": "terser framework/js/script.js -o framework/js/script.min.js --compress --mangle && terser framework/js/plugins.js -o framework/js/plugins.min.js --compress --mangle",
"build": "npm-run-all build:css build:js",
"build:dist": "npm run build && node scripts/build-dist.js",
"watch:css": "chokidar '**/*.scss' -c 'npm run build:css'",
"watch:js": "chokidar 'framework/js/script.js' 'framework/js/plugins.js' -c 'npm run build:js'",
"watch": "npm-run-all --parallel watch:css watch:js",
"dev": "npm run watch"
},
"devDependencies": {
"sass": "^1.77.0",
"terser": "^5.31.0",
"npm-run-all": "^4.1.5",
"chokidar-cli": "^3.0.0"
},
"keywords": [
"wordpress",
"theme",
"responsive",
"typography"
]
}