UNPKG

dotenv

Version:

Loads environment variables from .env file

73 lines (72 loc) • 1.75 kB
{ "name": "dotenv", "version": "18.0.3", "description": "Loads environment variables from .env file", "main": "dist/index.cjs", "bin": { "dotenv": "./dist/index.cjs" }, "types": "dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "default": "./dist/index.cjs" }, "./config": "./dist/config.cjs", "./config.js": "./dist/config.cjs", "./package.json": "./package.json" }, "files": [ "dist/**/*", "LICENSE", "README.md" ], "scripts": { "build": "node scripts/build.js", "dts-check": "tsc --project tests/types/tsconfig.json", "lint": "standard", "test": "npm run build && npm run lint && npm run dts-check && tap run tests/**/*.js --allow-empty-coverage --disable-coverage --timeout=60000", "prepack": "npm run build", "prepublishOnly": "npm pack --dry-run", "prerelease": "npm test", "release": "standard-version" }, "repository": { "type": "git", "url": "git://github.com/motdotla/dotenv.git" }, "homepage": "https://github.com/motdotla/dotenv#readme", "funding": "https://dotenvx.com", "keywords": [ "dotenv", "env", ".env", "environment", "variables", "config", "settings", "env vars", "environment variables", "secret-management", "secrets" ], "readmeFilename": "README.md", "license": "BSD-2-Clause", "devDependencies": { "@types/node": "^18.11.3", "decache": "^4.6.2", "esbuild": "^0.28.1", "sinon": "^14.0.1", "standard": "^17.0.0", "standard-version": "^9.5.0", "tap": "^21.7.4", "typescript": "^4.8.4" }, "engines": { "node": ">=12" }, "browser": { "fs": false } }