-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 2.06 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sprucecss",
"version": "2.3.3",
"description": "Spruce CSS - Another CSS Framework",
"keywords": [
"css",
"css-framework",
"framework",
"front-end",
"responsive",
"sass",
"sass-framework",
"web"
],
"author": "Cone (https://conedevelopment.com)",
"homepage": "https://sprucecss.com",
"repository": {
"type": "git",
"url": "git+https://github.com/conedevelopment/sprucecss.git"
},
"bugs": {
"url": "https://github.com/conedevelopment/sprucecss/issues"
},
"scripts": {
"autoprefixer": "postcss css/*.css -u autoprefixer --replace --no-map",
"browser-sync": "browser-sync start --server --startPath \"preview/html/page/color.html\" --files \"**/*\" --directory --no-notify --no-open",
"delete:dev-folder": "del-cli --force css",
"prod": "npm-run-all delete:dev-folder sass:prod:expanded sass:prod:compressed autoprefixer",
"pug": "pug --obj preview/pug/assets/data.json --watch preview/pug/ --out preview/html/ --pretty",
"sass:preview": "sass --watch --update --style=expanded --no-source-map preview/assets/scss:preview/assets/css --load-path=scss",
"sass:prod:expanded": "sass --no-source-map --style=expanded scss/spruce-styles.scss:css/spruce.css",
"sass:prod:compressed": "sass --no-source-map --style=compressed scss/spruce-styles.scss:css/spruce.min.css",
"sass:lint": "stylelint scss/**/*.scss",
"sass:lint:fix": "stylelint scss/**/*.scss --fix",
"start": "npm-run-all --parallel pug sass:preview browser-sync",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.20",
"browser-sync": "^3.0.2",
"del-cli": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.4.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"pug-cli": "^1.0.0-alpha6",
"sass": "^1.77.8",
"sass-true": "^8.0.0",
"stylelint": "^16.8.2",
"stylelint-config-sass-guidelines": "^12.0.0",
"stylelint-order": "^6.0.4"
},
"jest": {
"testEnvironment": "jest-environment-node-single-context"
}
}