Skip to content

Commit

Permalink
fix(app generator chore): comply with standard package.json indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed Jul 22, 2015
1 parent cfe343f commit 07fd501
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions generators/app/templates/@package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"author": {<% if ( authorEmail ) { %>
"email": "<%= authorEmail %>",<% } %>
"name": "<%= authorName %>"<% if ( authorUrl ) { %>,
"url": "<%= authorUrl %>"<% } %>
},
"browser": {},
"browserify": {
"transform": [
"coffeeify",
"browserify-shim",
"hbsfy"
]
},
"browserify-shim": {},
"dependencies": {},
"description": "<%= packageDescription %>",
"devDependencies": {},
"license": "BSD-3-Clause",
"main": "dist/app/bundle.js",
"name": "<%= packageName %>",
"private": true,
"scripts": {
"prepublish": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt",
"test": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt test"
},
"version": "0.1.0"
"author": {<% if ( authorEmail ) { %>
"email": "<%= authorEmail %>",<% } %>
"name": "<%= authorName %>"<% if ( authorUrl ) { %>,
"url": "<%= authorUrl %>"<% } %>
},
"browser": {},
"browserify": {
"transform": [
"coffeeify",
"browserify-shim",
"hbsfy"
]
},
"browserify-shim": {},
"dependencies": {},
"description": "<%= packageDescription %>",
"devDependencies": {},
"license": "BSD-3-Clause",
"main": "dist/app/bundle.js",
"name": "<%= packageName %>",
"private": true,
"scripts": {
"prepublish": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt",
"test": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt test"
},
"version": "0.1.0"
}

0 comments on commit 07fd501

Please sign in to comment.