{
  "name": "{{ props.pkg.name }}",
  "version": "{{ props.pkg.version }}",
  "description": "{{ props.pkg.description }}",
  "keywords": [
    "angular"
  ],
{%- if props.ngf.username %}
  "homepage": "https://github.com/{{ props.ngf.username }}/{{ props.pkg.name }}",
  "bugs": "https://github.com/{{ props.ngf.username }}/{{ props.pkg.name }}/issues",
  "author": {
    "name": "{{ props.git.name }}",
    "email": "{{ props.git.email }}",
    "url": "https://github.com/{{ props.ngf.username }}"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/{{ props.ngf.username }}/{{ props.pkg.name }}.git"
  },
{%- endif %}
{%- if props.pkg.license %}
  "license": "{{ props.pkg.license }}",
{%- endif %}
  "scripts": {
    "test": "$(npm bin)/eslint --ignore-pattern app/bower_components app",
    "start": "$(npm bin)/gulp serve",
    "build": "$(npm bin)/gulp build"
  },
  "dependencies": {
    "angular2": "2.0.0-alpha.37",
    "systemjs": "^0.18.17"
  },
  "devDependencies": {
    "babel-eslint": "^4.1.3",
    "eslint": "^1.6.0",
    "eslint-config-airbnb": "^0.1.0",
    "factory-angular2-channels": "^0.8.5",
    "gulp": "git://github.com/gulpjs/gulp.git#4.0",
    "ng-factory": "^1.0",
{%- if props.ngf.type == "application" %}
    "undertaker-app-tasks": "^0.4.0"
{%- else %}
    "undertaker-lib-tasks": "^0.4.0"
{%- endif %}
  }
}
