{
  "name": "{{pkg.name}}",
  "main": [
{{#if main}}{{#each main}}    "{{this}}"{{#if @last}}{{else}},
{{/if}}{{/each}}{{else}}    "assets/dist/{{pkg.name}}.js"{{/if}}
  ],
  "version": "{{pkg.version}}",
  "homepage": "{{pkg.homepage}}",
  "authors": [
    "{{#if pkg.author.name}}{{pkg.author.name}}{{else}}{{pkg.author}}{{/if}}"
  ],
  "license": "{{pkg.license}}",
  "ignore": [
    "**/.*",
    "node_modules",
    "bower_components",
    "test",
    "tests"
  ],
  "dependencies": {
{{#each dependencies}}    "{{@key}}": "{{this}}"{{#if @last}}{{else}},
{{/if}}{{/each}}
  }
}
