1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/package.json

43 lines
1.2 KiB
JSON
Raw Normal View History

2017-03-30 08:00:14 +03:00
{
2017-04-01 05:08:20 +03:00
"name": "chota",
2017-09-27 22:05:20 +03:00
"version": "0.3.4",
2017-04-01 05:08:20 +03:00
"description": "A really small CSS framework",
"main": "dist/chota.min.css",
"scripts": {
2017-04-03 06:26:56 +03:00
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
2017-04-02 05:02:55 +03:00
"build": "rm -r dist/ && yarn postcss && yarn postcss -- -x .min.css && yarn cssnano && yarn cssnano:min",
"postcss": "postcss ./src/chota.css -u postcss-import -d dist/ --no-map",
"cssnano": "cssnano ./dist/chota.css ./dist/chota.css --no-calc --no-core",
"cssnano:min": "cssnano ./dist/chota.min.css ./dist/chota.min.css --no-calc",
2017-04-01 05:08:20 +03:00
"watch": "yarn postcss -- -u cssnano -x .min.css -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": "^6.7.7",
"browser-sync": "^2.18.8",
2017-04-02 05:02:55 +03:00
"cssnano-cli": "^1.0.5",
2017-04-01 05:08:20 +03:00
"postcss-cli": "^3.0.0",
"postcss-import": "^9.1.0"
2017-04-02 05:02:55 +03:00
},
"files": [
"src/",
"dist/",
"README.md"
]
2017-03-30 08:00:14 +03:00
}