UNPKG

@aminya/dotenv-vault

Version:

A secrets manager for .env files – from the same people that pioneered dotenv.

102 lines 2.54 kB
{ "name": "@aminya/dotenv-vault", "version": "1.26.2-aminya.1", "description": "A secrets manager for .env files – from the same people that pioneered dotenv.", "author": "Mot @dotenvorg", "bin": { "dotenv-vault": "./bin/run" }, "homepage": "https://github.com/dotenv-org/dotenv-vault", "license": "MIT", "main": "dist/index.js", "repository": "dotenv-org/dotenv-vault", "files": [ "/bin", "/dist", "/npm-shrinkwrap.json", "/oclif.manifest.json" ], "dependencies": { "@oclif/core": "^1", "@oclif/plugin-help": "^5.2.15", "@oclif/plugin-not-found": "^2.3.34", "@oclif/plugin-update": "^3.1.16", "@oclif/plugin-warn-if-update-available": "^2.0.46", "axios": "^1.6.7", "chalk": "^4.1.2", "dotenv": "^16.3.1" }, "devDependencies": { "@oclif/test": "^2", "@types/chai": "^4", "@types/mocha": "^9.1.1", "@types/node": "^16.18.11", "chai": "^4", "eslint": "^7.32.0", "eslint-config-oclif": "^4", "eslint-config-oclif-typescript": "^1.0.3", "fs-monkey": "^1.0.4", "globby": "^11", "jest": "^27.5.1", "memfs": "^3.5.1", "mocha": "^9", "oclif": "^2", "shx": "^0.3.4", "sinon": "^13.0.2", "spyfs": "^1.0.2", "ts-node": "^10.9.1", "tslib": "^2.6.1", "typescript": "4.9.5" }, "oclif": { "bin": "dotenv-vault", "dirname": "dotenv-vault", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-not-found", "@oclif/plugin-update", "@oclif/plugin-warn-if-update-available" ], "warn-if-update-available": { "timeoutInDays": 1 }, "topicSeparator": " ", "topics": { "local": { "description": "[DEPRECATED][Switch to dotenvx: github.com/dotenvx/dotenvx] Local only commands" } }, "update": { "node": { "version": "16.15.1" }, "s3": { "xz": true, "host": "https://dotenv-vault-assets.dotenv.org", "bucket": "dotenv-vault" } } }, "engines": { "node": ">=16" }, "bugs": "https://github.com/dotenv-org/dotenv-vault/issues", "keywords": [ "dotenv", "dotenv-vault", "env", ".env", "environment", "variables", "config", "settings" ], "types": "dist/index.d.ts", "scripts": { "build": "shx rm -rf dist && tsc -b", "lint": "eslint . --ext .ts --config .eslintrc", "posttest": "yarn lint", "test": "tsc -b && mocha --forbid-only \"test/**/*.test.ts\"" } }