UNPKG

typed-environment-loader

Version:

typed-environment-loader is a lightweight utility for loading environment variables in a typed manner, ensuring type safety and consistency in your Node.js applications.

64 lines (63 loc) 1.73 kB
{ "name": "typed-environment-loader", "version": "0.4.6-2", "description": "typed-environment-loader is a lightweight utility for loading environment variables in a typed manner, ensuring type safety and consistency in your Node.js applications.", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "lint": "eslint \"src/**/*.ts\" ", "lint:fix": "eslint \"src/**/*.ts\" --fix", "build": "tsc", "prestart": "npm run build", "clean": "rm -rf dist", "ts:check-types": "tsc", "ts:check-types:watch": "tsc --watch", "check-code": "npm run test && npm run lint && npm run ts:check-types", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepublish": "npm run clean && npm run build" }, "repository": { "type": "git", "url": "https://github.com/ahmedheltaher/typed-environment-loader.git" }, "bugs": { "url": "https://github.com/ahmedheltaher/typed-environment-loader/issues" }, "keywords": [ "nodejs", "config", "utility", "environment", "typescript", "tool", "loader", "declarative", "env", "typed", "runtime-typechecking" ], "author": { "email": "ahmedheltaher@gmail.com", "name": "Ahmed Eltaher", "url": "https://github.com/ahmedheltaher" }, "license": "MIT", "devDependencies": { "@types/debug": "^4.1.12", "@types/jest": "^29.5.14", "@types/node": "^22.13.4", "@typescript-eslint/eslint-plugin": "^8.24.0", "@typescript-eslint/parser": "^8.24.0", "debug": "^4.4.0", "eslint": "^9.20.1", "eslint-config-prettier": "^10.0.1", "eslint-plugin-prettier": "^5.2.3", "jest": "^29.7.0", "prettier": "^3.5.1", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.7.3" } }