{
  "name": "<%= moduleName %>",
  "version": "0.0.0",
  "description": "<%= description %>",
  "main": "index.js",
  <% if (cli) { %>
  "bin": "cli.js",<% } %>
  "scripts": {
    "commitmsg": "validate-commit-msg",
    "prepush": "npm test",
    "pretest": "standard",
    "tap": "tap 'test/unit/**/*.js'",
    "test": "npm run tap",
    "test:coverage": "npm run -s tap -- --cov --coverage-report=lcov",
    "test:watch": "chokidar '**/*.js' -c 'npm run -s tap' --initial -i node_modules -i coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/<%= githubUsername %>/<%= moduleName %>.git"
  },
  "keywords": <%- JSON.stringify(keywords, null, 2) %>,
  "author": "<%= name %> <<%= email %>> (<%= website %>)",
  "engines": {
    "npm": ">=5.3",
    "node": ">=6.11"
  },
  "bugs": {
    "url": "https://github.com/<%= githubUsername %>/<%= moduleName %>/issues"
  },
  "homepage": "https://github.com/<%= githubUsername %>/<%= moduleName %>#readme",
  "dependencies": {<% if (cli) { %>
    "meow": "3.7.0"
  <% } %>},
  "devDependencies": {
    "chokidar-cli": "1.2.0",
    "husky": "0.14.3",
    "standard": "10.0.3",
    "tap": "11.0.1",
    "validate-commit-msg": "2.14.0"
  },
  "directories": {
    "test": "test"
  },
  "files": [
    "index.js"<% if (cli) { %>,
    "cli.js"<% } %>
  ]
}
