Skip to content

Instantly share code, notes, and snippets.

@magsout
Created March 18, 2016 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magsout/99458d1e9e6c068cb01b to your computer and use it in GitHub Desktop.
Save magsout/99458d1e9e6c068cb01b to your computer and use it in GitHub Desktop.
{
"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