check-my-env
Version:
Scans your code for used process.env variables and checks if they're defined in your .env
28 lines (27 loc) • 536 B
JSON
{
"name": "check-my-env",
"version": "1.0.0",
"description": "Scans your code for used process.env variables and checks if they're defined in your .env",
"main": "index.js",
"bin": {
"env-check": "./index.js"
},
"scripts": {
"check": "node index.js"
},
"keywords": [
"dotenv",
"env",
"check",
"validate",
"process.env",
"env-check"
],
"files": ["index.js"],
"author": "Yash Bhatnagar",
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.3",
"glob": "^10.3.10"
}
}