{
  "name": "dotenv-webpack",
  "description": "A simple webpack plugin to support dotenv.",
  "version": "1.8.0",
  "main": "index.js",
  "scripts": {
    "precommit": "npm run lint",
    "prepush": "npm t",
    "lint": "standard",
    "predoc": "rimraf docs",
    "doc": "esdoc -c config/doc.json",
    "pretest": "npm run build",
    "test": "nyc _mocha --require babel-core/register",
    "posttest": "nyc report --reporter=lcov",
    "prebuild": "rimraf dist",
    "build": "babel --copy-files --out-dir dist src",
    "travis": "npm run lint && npm t"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mrsteele/dotenv-webpack.git"
  },
  "keywords": [
    "dotenv",
    "env",
    "safe",
    "environment",
    "dotenv-safe",
    "variables",
    "process",
    "process.env",
    "webpack",
    "plugin"
  ],
  "author": "Matt Steele <matt@omnionline.us> (http://omnionline.us/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mrsteele/dotenv-webpack/issues"
  },
  "homepage": "https://github.com/mrsteele/dotenv-webpack#readme",
  "peerDependencies": {
    "webpack": "^1 || ^2 || ^3 || ^4"
  },
  "dependencies": {
    "dotenv-defaults": "^1.0.2"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^10.0.1",
    "babel-plugin-transform-object-assign": "^6.22.0",
    "babel-preset-env": "^1.6.1",
    "babel-register": "^6.26.0",
    "chai": "^4.1.2",
    "esdoc": "^1.0.4",
    "esdoc-standard-plugin": "^1.0.0",
    "husky": "^3.0.0",
    "mocha": "^6.0.0",
    "nyc": "^14.0.0",
    "rimraf": "^3.0.0",
    "sinon": "^7.0.0",
    "standard": "^14.0.0",
    "webpack": "^4.6.0"
  },
  "files": [
    "dist"
  ],
  "standard": {
    "parser": "babel-eslint"
  },
  "browser": "browser.js",
  "babel": {
    "presets": [
      "env"
    ],
    "plugins": [
      "transform-object-assign"
    ]
  },
  "nyc": {
    "include": [
      "src/**/*.js",
      "dist/**/*.js"
    ]
  }
}
