{
  "name": "dotenv-picker",
  "version": "1.0.13",
  "description": "Choose .env file when running your app",
  "keywords": [
    "dotenv",
    "choose",
    "pick",
    ".env"
  ],
  "scripts": {
    "build": "npm run clean && copy-files-from-to && tsc",
    "clean": "rimraf ./dist",
    "check:js": "node -r ./dist/select.js ./tests/check.js dotenv_config_path=10 dotenv_picker_remember_last",
    "check:ts": "ts-node -r ./dist/select.js ./tests/check.ts dotenv_config_path=10 dotenv_picker_remember_last",
    "start:js": "npm run build && npm run check:js",
    "start:ts": "npm run build && npm run check:ts",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anton-nagornyi/dotenv-picker"
  },
  "author": "Anton Nagornyi",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/anton-nagornyi/dotenv-picker/issues"
  },
  "homepage": "https://github.com/anton-nagornyi/dotenv-picker#readme",
  "dependencies": {
    "chalk": "^4.1.2",
    "dotenv": "^10.0.0",
    "ignore": "^5.1.8"
  },
  "devDependencies": {
    "@types/dotenv": "^8.2.0",
    "@types/jest": "^27.0.2",
    "@types/mock-fs": "^4.13.1",
    "@typescript-eslint/eslint-plugin": "^4.28.1",
    "copy-files-from-to": "^3.2.0",
    "eslint": "^7.29.0",
    "eslint-config-airbnb-typescript": "^12.3.1",
    "eslint-plugin-import": "^2.23.4",
    "jest": "^27.2.5",
    "mock-fs": "^5.1.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.7",
    "ts-node": "^9.1.1",
    "typescript": "^4.3.4"
  },
  "bin": {
    "dotenv-picker": "bin/dotenv-picker.js"
  },
  "copyFiles": [
    {
      "from": "package.json",
      "to": "dist/package.json"
    },
    {
      "from": "README.md",
      "to": "dist/README.md"
    },
    {
      "from": "LICENSE",
      "to": "dist/LICENSE"
    },
    {
      "from": "bin/*",
      "to": "dist/bin"
    }
  ]
}
