{
  "name": "<%= packageName %>",
  "version": "<%= version %>",
  "description": "<%= libDesc %>",
  "main": "<%= main %>",
  "scripts": {
    "test": "mocha",<% if(browser) { %>
    "browser-test": "./node_modules/karma/bin/karma start --single-run",<% } %>
    "cover": "istanbul cover _mocha",<% if(browser) { %>
    "browser-cover": "./node_modules/karma/bin/karma start --single-run --cover",<% } %>
    "lint": "jshint --reporter node_modules/jshint-stylish .",
    "style": "jscs .",
    "clean": "rm -rf ./coverage"
  },
  "pre-commit": [
    "lint",
    "style",
    "test"<% if(browser) { %>,
    "browser-test"<% } %>
  ],
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/OADA/<%= repoName %>.git"
  },
  "keywords": [
    "oada"
  ],
  "author": <%= authorJSON %>,
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/OADA/<%= repoName %>/issues"
  },
  "homepage": "https://github.com/OADA/<%= repoName %>"
}
