1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
This commit is contained in:
Jenil Gogari 2017-03-31 22:08:20 -04:00
parent 18a92b266a
commit 6d1f8c4019

View File

@ -1,35 +1,35 @@
{ {
"name": "chota", "name": "chota",
"version": "0.2.0", "version": "0.2.1",
"description": "A really small CSS framework", "description": "A really small CSS framework",
"main": "dist/chota.min.css", "main": "dist/chota.min.css",
"scripts": { "scripts": {
"start": "browser-sync start --server --files '**/*.css' '**/*.html'", "start": "browser-sync start --server --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && yarn postcss -- -u cssnano -x .min.css", "build": "rm -r dist/ && yarn postcss && yarn postcss -- -u cssnano -x .min.css",
"postcss": "postcss ./src/chota.css --use postcss-import -d dist/ --no-map", "postcss": "postcss ./src/chota.css --use postcss-import -d dist/ --no-map",
"watch": "yarn postcss -- -u cssnano -x .min.css -w", "watch": "yarn postcss -- -u cssnano -x .min.css -w",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"keywords": [ "keywords": [
"css", "css",
"minimal", "minimal",
"web" "web"
], ],
"author": "Jenil Gogari", "author": "Jenil Gogari",
"license": "MIT", "license": "MIT",
"homepage": "https://jenil.github.io/chota", "homepage": "https://jenil.github.io/chota",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/jenil/chota.git" "url": "git+https://github.com/jenil/chota.git"
}, },
"bugs": { "bugs": {
"url": "https://github.com/jenil/chota/issues" "url": "https://github.com/jenil/chota/issues"
}, },
"devDependencies": { "devDependencies": {
"autoprefixer": "^6.7.7", "autoprefixer": "^6.7.7",
"browser-sync": "^2.18.8", "browser-sync": "^2.18.8",
"cssnano": "^3.10.0", "cssnano": "^3.10.0",
"postcss-cli": "^3.0.0", "postcss-cli": "^3.0.0",
"postcss-import": "^9.1.0" "postcss-import": "^9.1.0"
} }
} }