Created
March 18, 2016 08:39
-
-
Save magsout/99458d1e9e6c068cb01b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "cssrecipes-grid", | |
"version": "1.0.0", | |
"description": "BEMish grid component", | |
"keywords": [ | |
"browser", | |
"style", | |
"css", | |
"css-components", | |
"css-recipes", | |
"cssrecipes", | |
"recipes", | |
"grid", | |
"responsive" | |
], | |
"author": "bloodyowl", | |
"license": "MIT", | |
"repository": { | |
"type": "git", | |
"url": "https://github.com/cssrecipes/grid.git" | |
}, | |
"homepage": "https://github.com/cssrecipes/grid", | |
"bugs": { | |
"url": "https://github.com/cssrecipes/grid/issues" | |
}, | |
"files": [ | |
"CHANGELOG.md", | |
"LICENSE", | |
"lib", | |
"index.css", | |
"flex.css" | |
], | |
"devDependencies": { | |
"cssnext": "^1.6.0", | |
"postcss-cli": "^2.5.1", | |
"postcss-cssnext": "^2.4.0", | |
"postcss-import": "^8.0.2", | |
"postcss-reporter": "^1.3.3", | |
"stylelint": "^5.0.1", | |
"stylelint-config-standard": "^4.0.1" | |
}, | |
"stylelint": { | |
"extends": "stylelint-config-standard", | |
"rules": { | |
"indentation": [ 2, { | |
"hierarchicalSelectors": true | |
}] | |
} | |
}, | |
"scripts": { | |
"setup": "npm install && mkdir -p build", | |
"preprocess": "postcss -c package.json -u stylelint -u postcss-import -u postcss-reporter -d ./build *.css", | |
"build": "npm run setup && npm run preprocess", | |
"preprocess-test": "postcss -c package.json -u postcss-import -u stylelint -u postcss-cssnext -u postcss-reporter -d ./build ./test/test.css", | |
"build-test": "npm run setup && npm run preprocess-test", | |
"test": "npm run build-test", | |
"lintCSS": "stylelint ./index.css" | |
}, | |
"postcss-reporter": { | |
"clearMessages": true | |
}, | |
"postcss-import": { | |
"plugins": ["stylelint"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment