UNPKG

envalid

Version:

Validation for your environment variables

61 lines (60 loc) 1.28 kB
{ "name": "envalid", "version": "8.2.0", "description": "Validation for your environment variables", "main": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "engines": { "node": ">=18" }, "engineStrict": true, "files": [ "dist", "src" ], "scripts": { "check-exports": "attw --pack .", "start": "tsc --watch", "prepare": "tsc", "coverage": "vitest run --coverage", "tsc": "tsc --noEmit", "lint": "biome lint --diagnostic-level=error src", "test": "vitest", "test:ci": "vitest run" }, "repository": { "type": "git", "url": "https://github.com/af/envalid" }, "keywords": [ ".env", "dotenv", "env", "env var", "environment", "environment variable", "validation" ], "dependencies": { "tslib": "2.8.1" }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", "@biomejs/biome": "2.4.4", "@types/node": "25.3.2", "@vitest/coverage-v8": "4.0.18", "expect-type": "1.3.0", "husky": "9.1.7", "typescript": "5.2.2", "vitest": "4.0.18" }, "author": "Aaron Franks", "license": "MIT", "husky": { "hooks": { "pre-commit": "npm run lint && npm run tsc", "pre-push": "npm run test" } } }