-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
58
59
{
"name": "cherry",
"description": "Minimal and comprehensible CSS framework",
"author": "Ricky Boyce",
"version": "1.4.0",
"license": "MIT",
"repository": "github:boycce/cherry",
"homepage": "https://boycce.github.io/cherry/",
"main": "scss/_index.scss",
"style": "css/cherry.min.css",
"keywords": [
"css",
"flexbox",
"framework",
"minimal",
"sass"
],
"scripts": {
"minor": "npm run build && standard-version --commit-all --release-as minor && npm publish",
"patch": "standard-version --commit-all && npm publish",
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output css/cherry.css css/cherry.css",
"build-cleancss": "cleancss -o css/cherry.min.css css/cherry.css",
"build-clean": "rimraf css",
"build-sass": "sass --style expanded cherry.scss css/cherry.css",
"dev": "npm run build-sass -- --watch",
"docs": "cd docs && bundle exec jekyll serve --livereload --livereload-port 4001"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"clean-css-cli": "^4.3.0",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"rimraf": "^2.6.3",
"sass": "^1.74.1",
"standard-version": "^9.1.0"
},
"files": [
"css",
"scss",
"cherry.scss",
"resources",
"README.md"
],
"engines": {
"node": ">=18"
},
"standard-version": {
"releaseCommitMessageFormat": "{{currentTag}}",
"sign": true,
"scripts": {
"prerelease": "npm run build && git reset && git add css/*"
},
"skip": {
"changelog": true,
"tag": true
}
}
}