mirror of
https://github.com/jenil/chota.git
synced 2023-08-10 21:13:07 +03:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "chota",
|
|
"version": "0.6.2",
|
|
"description": "A really small CSS framework",
|
|
"main": "dist/chota.min.css",
|
|
"scripts": {
|
|
"start": "run-p browser-sync watch",
|
|
"browser-sync": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
|
|
"build": "rimraf dist/* && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c",
|
|
"postcss": "postcss ./src/chota.css -d dist/",
|
|
"watch": "cross-env NODE_ENV=development yarn postcss -w",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"css",
|
|
"minimal",
|
|
"web"
|
|
],
|
|
"author": "Jenil Gogari",
|
|
"license": "MIT",
|
|
"homepage": "https://jenil.github.io/chota",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jenil/chota.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jenil/chota/issues"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^9.5.0",
|
|
"browser-sync": "^2.26.3",
|
|
"cross-env": "^5.2.0",
|
|
"cssnano": "^4.1.7",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss-cli": "^6.0.1",
|
|
"postcss-csso": "^3.0.0",
|
|
"postcss-import": "^12.0.1",
|
|
"rimraf": "^2.6.3"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"dist/",
|
|
"README.md"
|
|
]
|
|
}
|