{
  "name": "{{{name}}}",
  "version": "0.0.0",
  "description": "{{{desc}}}",
  "author": {
    "name": "{{author}}",
    "email": "{{{email}}}"
  },
  "contributors": [
    {
      "name": "{{author}}",
      "email": "{{{email}}}"
    }
  ],
  {{#cmd}}
  "bin": {
    "{{cmd}}": "./bin/cli"
  },
  {{/cmd}}
  "scripts": {
    "test": "tape \"./test/*.js\"",
    "test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
    "coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
  },
  "main": "./lib",
  "repository": {
    "type": "git",
    "url": "git://github.com/{{{repo}}}.git"
  },
  "keywords": [{{{keywords}}}],
  "bugs": {
    "url": "https://github.com/{{{repo}}}/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "codecov": "1.x.x",
    "istanbul": "^0.4.1",
    "jshint": "2.x.x",
    "jshint-stylish": "2.x.x",
    "tap-spec": "4.x.x",
    "tape": "4.x.x"
  },
  "license": "{{license}}"{{#private}},{{/private}}
  {{#private}}
  "private": true
  {{/private}}
}
