-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.19 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
37
38
{
"name": "wordtrap-site-template",
"version": "2.0.0",
"description": "Wordtrap HTML Site Template (Demo3)",
"main": "index.js",
"scripts": {
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --quiet scss/style.scss:css/style.css",
"css-minify": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output css/ --batch --batch-suffix \".min\" \"css/*.css\" \"!css/*.min.css\"",
"watch": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-compile css-minify\"",
"build": "npm-run-all css-compile css-minify"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/johnpiao171019"
},
"keywords": [
"html",
"theme",
"framework",
"bootstrap"
],
"author": "John Piao (https://github.com/johnpiao171019)",
"license": "GPL-3.0",
"licenseUrl": "https://www.gnu.org/licenses/gpl-3.0.html",
"bugs": {
"url": "https://github.com/johnpiao171019/issues"
},
"homepage": "https://www.wordtrap.org",
"devDependencies": {
"clean-css-cli": "^5.6.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"sass": "^1.56.0"
}
}