{
  "name": "env-cipher",
  "version": "0.2.1",
  "description": "A module to encrypt and decrypt ENV variables",
  "main": "./lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/ralfbecher/env-cipher"
  },
  "scripts": {
    "test": "node ./test/test.js",
    "decrypt": "node ./lib/decrypt.js",
    "certgen": "openssl req -newkey rsa:2048 -new -nodes -x509 -out ./ssl/cert.pem -days 3650 -subj /CN=localhost"
  },
  "bin": {
    "env-cipher": "./lib/cli.js"
  },
  "keywords": [
    "dotenv",
    "secure-env",
    "encrypt-env",
    "decrypt-env"
  ],
  "author": {
    "name": "Ralf Becher"
  },
  "license": "MIT",
  "dependencies": {
    "dotenv": "^8.2.0",
    "minimist": "^1.2.5"
  }
}
