{
  "name": "8-bit-env",
  "version": "1.0.8",
  "description": "The easiest way to manage, securely store and expose all of the environment variables and sensitive keys you need for your app.",
  "main": "dist/lib/index.js",
  "scripts": {
    "start": "node .",
    "dev": "tsc -w & nodemon .",
    "build": "rm -rf dist && tsc",
    "deploy": "npm run build && npm publish",
    "lint": "eslint --fix --ignore-path .eslintignore . --ext ts --ext js",
    "format": "prettier . --write",
    "test": "jest",
    "test:watch": "jest --watch"
  },
  "bin": "dist/bin/cli.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Dev-Simulator/8-bit-env.git"
  },
  "keywords": [
    "environment variables",
    "dotenv"
  ],
  "author": "Mike Dane",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Dev-Simulator/8-bit-env/issues"
  },
  "homepage": "https://github.com/Dev-Simulator/8-bit-env#readme",
  "devDependencies": {
    "@babel/core": "^7.13.8",
    "@babel/preset-env": "^7.13.9",
    "@babel/preset-typescript": "^7.13.0",
    "@types/cryptr": "^4.0.1",
    "@types/inquirer": "^7.3.1",
    "@types/jest": "^26.0.20",
    "@types/mock-fs": "^4.13.0",
    "@types/node": "^14.14.32",
    "@typescript-eslint/eslint-plugin": "^4.17.0",
    "@typescript-eslint/parser": "^4.17.0",
    "babel-jest": "^26.6.3",
    "eslint": "^7.21.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-prettier": "^3.3.1",
    "husky": "^4.3.8",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.4",
    "mock-fs": "^4.13.0",
    "prettier": "^2.2.1",
    "typescript": "^4.2.3"
  },
  "dependencies": {
    "colors": "^1.4.0",
    "commander": "^7.1.0",
    "cryptr": "^6.0.2",
    "inquirer": "^8.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm run test"
    }
  },
  "lint-staged": {
    "*.{js,ts}": [
      "npm run lint"
    ],
    "*": "npm run format"
  }
}
