chota/package.json

48 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",
2019-05-12 19:55:48 +03:00
"version": "0.6.2",
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",
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": {
2019-08-18 20:41:42 +03:00
"autoprefixer": "^9.6.1",
"cross-env": "^5.2.0",
2018-12-07 17:27:24 +03:00
"cssnano": "^4.1.7",
2019-03-23 20:54:27 +03:00
"npm-run-all": "^4.1.5",
2019-08-18 20:41:42 +03:00
"postcss-cli": "^6.1.3",
2017-11-16 01:14:48 +03:00
"postcss-csso": "^3.0.0",
2019-03-13 05:18:51 +03:00
"postcss-import": "^12.0.1",
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
}