-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@sippy-platform/mellow-css",
"version": "0.14.1",
"description": "The Mellow Design System.",
"main": "dist/js/mellow.js",
"style": "dist/css/mellow.css",
"sass": "scss/mellow.scss",
"scripts": {
"build": "npm run prod",
"bundlewatch": "bundlewatch",
"clean": "rimraf dist",
"docs": "npm-run-all --parallel docs:hugo docs:sass",
"docs:hugo": "hugo server",
"docs:build": "hugo -d build -s hugo",
"docs:sass": "sass --no-source-map hugo/assets/scss/main.scss hugo/assets/css/main.css --style=compressed",
"js:compile": "rollup --sourcemap --config build/rollup.config.js",
"js:lint": "eslint js/**/*.js",
"js:minify": "terser --compress --mangle --comments \"/^!/\" --source-map \"content=dist/js/mellow.js.map,includeSources,url=mellow.min.js.map\" --output dist/js/mellow.min.js dist/js/mellow.js",
"js": "npm-run-all -s js:compile js:minify",
"lint": "npm-run-all --aggretage-output --continue-on-error --parallel js:lint scss:lint",
"prepare": "npm run prod",
"prod": "npm-run-all -s clean scss js",
"scss": "npm-run-all --continue-on-error scss:lint scss:compile scss:prefix scss:copy",
"scss:compile": "sass scss/mellow.scss dist/css/mellow.css --style compressed",
"scss:bundle": "bundle-scss --mask \"scss/mellow.scss\" --dest \"dist/mellow.scss\" --sort mixin",
"scss:copy": "copyfiles scss/**/*.scss dist/",
"scss:lint": "npm-run-all --continue-on-error scss:lint:*",
"scss:lint:style": "stylelint \"**/*.scss\"",
"scss:lint:vars": "fusv scss/ hugo/assets/scss/",
"scss:prefix": "postcss -u autoprefixer -r dist/css/*.css --map",
"start": "npm-run-all --parallel watch docs",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm-run-all --parallel watch:*:*",
"watch:js:core": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js\"",
"watch:js:docs": "nodemon --watch hugo/assets/js/ --ext js --exec \"npm-run-all js:lint\"",
"watch:scss:core": "nodemon --watch scss/ --ext scss --exec \"npm-run-all scss\"",
"watch:scss:docs": "nodemon --watch hugo/assets/scss/ --ext scss --exec \"npm run scss:lint\""
},
"repository": "git://github.com/sippy-platform/mellow-css.git",
"files": [
"dist"
],
"keywords": [
"css-framework"
],
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sippy-platform/mellow-css/issues"
},
"homepage": "https://sippy-platform.github.io/mellow-css",
"peerDependencies": {
"@sippy-platform/valkyrie": ">=0.15.0"
},
"devDependencies": {
"@babel/cli": "7.18.10",
"@babel/core": "7.18.10",
"@babel/preset-env": "7.18.10",
"@rollup/plugin-babel": "5.3.1",
"autoprefixer": "10.4.8",
"bundle-scss": "1.5.1",
"bundlewatch": "0.3.3",
"clsx": "1.2.1",
"copyfiles": "2.4.1",
"eslint": "8.22.0",
"find-unused-sass-variables": "4.0.4",
"hugo-bin": "0.89.0",
"nodemon": "2.0.19",
"npm-run-all": "4.1.5",
"postcss": "8.4.16",
"postcss-cli": "10.0.0",
"rimraf": "3.0.2",
"sass": "1.54.5",
"stylelint": "14.11.0",
"stylelint-config-standard-scss": "5.0.0",
"terser": "5.14.2"
},
"browserslist": {
"production": [
"last 2 versions",
"not dead",
"not ie <= 11"
]
},
"sideEffects": false,
"hugo-bin": {
"buildTags": "extended"
},
"bundlewatch": {
"files": [
{
"path": "dist/css/*.css",
"maxSize": "30kB"
}
]
}
}