{
  "name": "<%= projName %>",
  "version": "0.1.0",
  "description": "<%= projName %> scaffolded with <%= pkg.name %> v<%= pkg.version %>.",
  "author": {
    "name": "<%= realname %>",
    "email": "<%= email %>",
    "url": "<%= githubUrl %>"
  },
  "homepage": "<%= githubUrl %>/<%= projName %>",
  "bugs": {
    "url": "<%= githubUrl %>/<%= projName %>/issues"
  },
  "licenses": [
    {
      "type": "MIT"<% if (useMitOrg) { %>,
      "url": "http://<%= githubUser %>.mit-license.org"<% } %>
    }
  ],
  "maintainers": [],
  "contributors": [{
    "name": "Daniel Lamb",
    "email": "dlamb.open.source@gmail.com",
    "url": "https://github.com/daniellmb"
  }],
  "repository": {
    "type": "git",
    "url": "git://github.com/<%= githubUser %>/<%= projName %>.git"
  },
  "main": "<%= baseFileName %>.js",
  "scripts": {
    "test": "<%= taskFramework %>"
  },
  "keywords": [
    "micro",
    "framework",
    "library"
  ],
  "dependencies": {
  },
  "devDependencies": {<% if (taskFramework === 'gulp') { %>
    "gulp": "*",
    "gulp-jshint": "*",
    "gulp-complexity": "*",
    "gulp-rename": "*",
    "gulp-replace": "*",
    "gulp-uglify": "*",<% if (options.coffee) { %>
    "gulp-coffee": "*",<% } %>
    "gulp-karma": "*",<% } %><% if (taskFramework === 'grunt') { %>
    "grunt": "*",
    "grunt-contrib-jshint": "*",
    "grunt-complexity": "*",
    "grunt-contrib-uglify": "*",
    "grunt-karma": "*",<% if (options.coffee) { %>
    "grunt-contrib-coffee": "*",<% } %><% } %><% if (testFramework === 'jasmine') { %>
    "karma-jasmine": "*",<% } %><% if (testFramework === 'mocha') {  %>
    "mocha": "*",
    "karma-mocha": "*",
    "karma-chai": "*",
    "sinon-chai": "*",
    "karma-sinon": "*",<% } %><% if (options.coffee) { %>
    "coffee-script": "*",
    "karma-coffee-preprocessor": "*",<% } %>
    "karma-coverage": "*",
    "karma-phantomjs-launcher": "*"
  },
  "engines": {
    "node": ">=0.10.0"
  }
}