{
  "name": "<%= moduleName %>",
  "version": "0.0.0",
  "description": "<%= moduleDescription %>",<% if (cli) { %>
  "bin": "cli.js",<% } %>
  "main": "lib/index.js",
  "files": [
    "lib/"<% if (cli) { %>,
    "cli.js"<% } %>
  ],
  "keywords": [
    <%- moduleKeywords %>
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/<%= githubUsername %>/<%= moduleName %>"
  },
  "scripts": {
    "audit": "nsp check package",
    "build": "babel -d ./ ./src",
    "check": "npm run audit && npm outdated --depth 0",
    "coverage": "nyc --reporter=lcov --reporter=text --reporter=html npm test",<% if (coveralls) { %>
    "coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",<% } %><% if (githubRelease) { %>
    "github-release": "conventional-github-releaser -p angular",<% } %>
    "lint": "eslint src test",
    "test": "ava --require babel-core/register",
    "validate": "npm run lint && npm test",
    "prepare": "npm run build && npm run validate && npm run check",
    "pp": "npm run prepare",
    "major": "pmm major",
    "minor": "pmm minor",
    "patch": "pmm patch"
  },
  "author": {
    "name": "<%= name %>",
    "email": "<%= email %>",
    "url": "<%= website %>"
  },
  "pre-commit": [
    "validate"
  ],
  "dependencies": {<% if (cli) { %>
    "meow": "^3.7.0",
    "chalk": "^1.1.1"
  <% } %>},
  "devDependencies": {
    "ava": "^0.14.0",
    "babel-cli": "^6.5.1",
    "babel-core": "^6.5.2",
    "babel-eslint": "^6.0.0",
    "babel-plugin-transform-function-bind": "^6.5.2",
    "babel-preset-es2015": "^6.5.0",<% if (githubRelease) { %>
    "conventional-github-releaser": "^1.1.0",<% } %><% if (coveralls) { %>
    "coveralls": "^2.11.9",<% } %><% if (commitizen) { %>
    "cz-conventional-changelog": "^1.1.5",<% } %>
    "eslint": "^2.5.1",
    "nsp": "^2.2.0",
    "nyc": "^6.1.1",
    "pmm": "^1.3.0",
    "pre-commit": "^1.1.2"
  }<% if (commitizen) { %>,
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  }<% } %>
}
