Skip to content

Instantly share code, notes, and snippets.

@chodorowicz
Last active March 25, 2017 09:10
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 chodorowicz/8cff252a06376c2beb88334b41ed87b3 to your computer and use it in GitHub Desktop.
Save chodorowicz/8cff252a06376c2beb88334b41ed87b3 to your computer and use it in GitHub Desktop.
web dev dotfiles, config files
root = true
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
{
"extends": "airbnb-base",
}
npm-shrinkwrap.json binary
node_modules
save=true
save-exact=true
{
"name": "project-name",
"version": "1.0.0",
"description": "",
"main": "main.js",
"dependencies": {
},
"scripts": {
"build:css": "lessc ./css/main.less ./build/css/main.css",
"build:autoprefixer": "postcss --use autoprefixer -o ./dist/css/main.css ./build/css/main.css",
"build:cssAll": "npm run build:css && npm run build:autoprefixer",
"watch:css": "onchange './css/**/*' -- npm run build:cssAll",
},
"engines": {
"node": "~6.3",
"npm": "~3.10"
},
"author": "Jakub Chodorowicz <jakub.chodorowicz@gmail.com>",
"license": "UNLICENSED",
"private": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment