UNPKG

node-env-run

Version:

Wrapper executable to load env variables from .env and run Node

73 lines (72 loc) 1.86 kB
{ "name": "node-env-run", "version": "4.0.2", "description": "Wrapper executable to load env variables from .env and run Node", "repository": { "url": "git@github.com:dkundel/node-env-run.git", "type": "git" }, "keywords": [ "dotenv", "environment", "variables", "env", ".env", "config", "settings" ], "author": "Dominik Kundel <dominik.kundel@gmail.com>", "license": "MIT", "dependencies": { "@types/common-tags": "^1.4.0", "@types/debug": "^4.1.5", "@types/node": "^10.17.28", "@types/yargs": "^15.0.5", "common-tags": "^1.7.2", "cross-spawn": "^7.0.3", "debug": "^4.1.1", "dotenv": "^8.2.0", "pkginfo": "^0.4.1", "upath": "^1.2.0", "yargs": "^15.4.1" }, "bin": { "nodenv": "./dist/bin/node-env-run.js", "node-env-run": "./dist/bin/node-env-run.js" }, "types": "./dist/bin/node-env-run.d.ts", "scripts": { "contrib:generate": "all-contributors generate", "contrib:add": "all-contributors add", "prepublish": "npm run tsc", "tsc": "tsc", "build": "npm run tsc", "lint": "eslint \"!(node_modules)/**/*.ts\"", "pretest": "npm run lint", "test": "jest" }, "devDependencies": { "@types/cross-spawn": "^6.0.2", "@types/jest": "^26.0.7", "@types/mock-fs": "^4.10.0", "@typescript-eslint/eslint-plugin": "^3.7.1", "@typescript-eslint/parser": "^3.7.1", "all-contributors-cli": "^6.17.0", "eslint": "^7.5.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "jest": "^26.1.0", "mock-fs": "^4.12.0", "npm-run-all": "^4.0.2", "prettier": "^2.0.5", "ts-jest": "^26.1.4", "typescript": "^3.9.7" }, "jest": { "preset": "ts-jest", "testPathIgnorePatterns": [ "<rootDir>/dist/", "<rootDir>/node_modules/" ] } }