{
  "name": "webpack-angular-externals",
  "version": "1.0.2",
  "description": "A tiny utility to prevent webpack bundling @angular dependencies in your library code",
  "main": "src/index.js",
  "files": [
    "src/index.js"
  ],
  "scripts": {
    "lint": "xo",
    "pretest": "npm run lint",
    "test": "nyc mocha",
    "test:watch": "mocha --watch",
    "preversion": "npm test",
    "postversion": "npm publish",
    "codecov": "cat coverage/lcov.info | codecov",
    "start": "npm run test:watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mattlewis92/webpack-angular-externals.git"
  },
  "keywords": [
    "webpack",
    "angular",
    "externals",
    "library"
  ],
  "author": "Matt Lewis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mattlewis92/webpack-angular-externals/issues"
  },
  "homepage": "https://github.com/mattlewis92/webpack-angular-externals#readme",
  "devDependencies": {
    "chai": "^3.5.0",
    "codecov-lite": "^0.1.3",
    "memory-fs": "^0.4.1",
    "mocha": "^3.2.0",
    "nyc": "^10.1.2",
    "webpack": "^2.2.1",
    "xo": "~0.17.1"
  },
  "peerDependencies": {
    "webpack": ">=2.0.0"
  },
  "dependencies": {
    "lodash.camelcase": "^4.3.0"
  },
  "nyc": {
    "reporter": [
      "html",
      "text-summary",
      "lcovonly"
    ]
  },
  "xo": {
    "space": true,
    "envs": [
      "node",
      "mocha"
    ]
  }
}
