-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.08 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
{
"name": "@ggedde/spry-css",
"version": "2.3.23",
"description": "A simple and customizable CSS Toolkit while being as lightweight as possible",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ggedde/spry-css.git"
},
"keywords": [
"CSS",
"Utilities"
],
"author": "ggedde",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggedde/spry-css/issues"
},
"homepage": "https://github.com/ggedde/spry-css#readme",
"scripts": {
"dev": "node_modules/.bin/chokidar *.scss -c 'npm run build'",
"build": "node_modules/.bin/sass --style=compressed ./spry.scss | node_modules/.bin/postcss --map false --use autoprefixer --use cssnano -o ./dist/spry.min.css; sass --style=compressed ./spry.scss | node_modules/.bin/postcss --map false --use autoprefixer --use cssnano -o ./docs/spry.min.css; gzip -c ./dist/spry.min.css > ./dist/spry.min.css.gz"
},
"dependencies": {
"autoprefixer": "^10.4.1",
"chokidar-cli": "^3.0.0",
"cssnano": "^5.1.14",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"sass": "^1.56.1"
}
}