chota/package.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2017-03-30 08:00:14 +03:00
{
2017-04-01 05:08:20 +03:00
"name": "chota",
2018-11-11 20:29:46 +03:00
"version": "0.5.2",
2017-04-01 05:08:20 +03:00
"description": "A really small CSS framework",
"main": "dist/chota.min.css",
"scripts": {
2017-11-16 01:21:12 +03:00
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c",
2017-11-16 01:14:48 +03:00
"postcss": "postcss ./src/chota.css -d dist/",
"watch": "NODE_ENV=development yarn postcss -w",
2017-04-01 05:08:20 +03:00
"test": "echo \"Error: no test specified\" && exit 1"
},
2017-11-16 01:21:12 +03:00
"keywords": [
"css",
"minimal",
"web"
],
2017-04-01 05:08:20 +03:00
"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": {
2018-12-07 17:27:24 +03:00
"autoprefixer": "^9.4.2",
"browser-sync": "^2.26.3",
"cssnano": "^4.1.7",
"postcss-cli": "^6.0.1",
2017-11-16 01:14:48 +03:00
"postcss-csso": "^3.0.0",
2018-12-07 17:27:24 +03:00
"postcss-import": "^12.0.1"
2017-04-02 05:02:55 +03:00
},
2017-11-16 01:21:12 +03:00
"files": [
"src/",
"dist/",
"README.md"
]
2017-03-30 08:00:14 +03:00
}