{
  "name": "next-runtime-dotenv",
  "version": "1.5.1",
  "description": "Expose environment variables to the runtime config of Next.js",
  "main": "index.js",
  "license": "MIT",
  "repository": "https://github.com/tusbar/next-runtime-dotenv",
  "author": "Bertrand Marron <bertrand.marron@gmail.com>",
  "scripts": {
    "test": "jest"
  },
  "keywords": [
    "next.js",
    "next",
    "plugins",
    "environment",
    "dotenv",
    "runtime",
    "configuration"
  ],
  "dependencies": {
    "dotenv": "^16.0.0"
  },
  "peerDependencies": {
    "next": ">= 5.1.0"
  },
  "devDependencies": {
    "@bizon/semantic-release-config": "^1.0.1",
    "eslint-config-xo-bizon": "^1.1.1",
    "jest": "^29.1.2",
    "next": "^12.0.4",
    "semantic-release": "^19.0.2",
    "xo": "^0.52.4"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "index.js"
    ],
    "coverageReporters": [
      "lcov",
      "text-summary"
    ]
  },
  "xo": {
    "extends": "xo-bizon",
    "semicolon": false,
    "space": 2,
    "ignores": [
      "example/**"
    ],
    "overrides": [
      {
        "files": "__tests__/**/*.js",
        "envs": [
          "jest"
        ]
      }
    ]
  },
  "release": {
    "extends": "@bizon/semantic-release-config"
  }
}
