chota/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2017-03-30 08:00:14 +03:00
{
2017-04-01 05:08:20 +03:00
"name": "chota",
2020-05-16 23:38:58 +03:00
"version": "0.8.0",
2017-04-01 05:08:20 +03:00
"description": "A really small CSS framework",
"main": "dist/chota.min.css",
"scripts": {
2019-08-18 20:41:42 +03:00
"start": "run-p docs watch",
"docs": "jekyll s -s docs",
"build": "rimraf dist/* && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/chota.min.css | wc -c | xargs echo 'Size:'",
2017-11-16 01:14:48 +03:00
"postcss": "postcss ./src/chota.css -d dist/",
2018-12-07 17:53:30 +03:00
"watch": "cross-env NODE_ENV=development yarn postcss -w",
2019-09-22 03:27:42 +03:00
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "yarn build"
2017-04-01 05:08:20 +03:00
},
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": {
2022-08-31 03:51:58 +03:00
"autoprefixer": "^10.4.8",
2020-05-16 22:48:02 +03:00
"cross-env": "^7.0.2",
2022-08-31 03:51:58 +03:00
"cssnano": "^5.1.13",
2019-03-23 20:54:27 +03:00
"npm-run-all": "^4.1.5",
2022-08-31 03:51:58 +03:00
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-csso": "^6.0.1",
"postcss-import": "^15.0.0",
2019-08-18 20:41:42 +03:00
"rimraf": "^3.0.0"
2017-04-02 05:02:55 +03:00
},
2017-11-16 01:21:12 +03:00
"files": [
"src/",
"dist/",
"README.md"
2019-08-18 20:41:42 +03:00
],
"browserslist": [
"last 2 versions"
2017-11-16 01:21:12 +03:00
]
2017-03-30 08:00:14 +03:00
}