Skip to content

Instantly share code, notes, and snippets.

@edgarshurtado
Created October 5, 2017 17:11
Show Gist options
  • Save edgarshurtado/38aa19212a692ce37885d5cd0c056ad8 to your computer and use it in GitHub Desktop.
Save edgarshurtado/38aa19212a692ce37885d5cd0c056ad8 to your computer and use it in GitHub Desktop.
Example package.json for my blogpost explaining grunt
{
"name": "",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"grunt": "^1.0.1"
},
"devDependencies": {
"grunt-cli": "^1.2.0",
"autoprefixer": "^7.1.4",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.7.0",
"grunt-babel": "^6.0.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mkdir": "^1.0.0",
"grunt-postcss": "^0.8.0",
"grunt-responsive-images": "^1.10.1",
"load-grunt-tasks": "^3.5.2"
},
"browserslist": [
" > 5%",
"last 2 versions"
],
"babel": {
"presets": [
"es2015"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment