mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
- Removed the -e/--env flags in favor of just requiring the first arg to env-cmd to be the relative path to the env file - Comments are now valid in env files using the # - Empty lines in env file are now ignored - Fixed bug env file no longer needs to end on a newline
44 lines
986 B
JSON
44 lines
986 B
JSON
{
|
|
"name": "env-cmd",
|
|
"version": "2.0.0",
|
|
"description": "Executes a command using the envs in the provided env file",
|
|
"main": "lib/index.js",
|
|
"bin": {
|
|
"env-cmd": "bin/env-cmd.js"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"test-cover": "istanbul cover node_modules/.bin/_mocha -- -R spec",
|
|
"coveralls": "coveralls < coverage/lcov.info"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/toddbluhm/env-cmd.git"
|
|
},
|
|
"keywords": [
|
|
"env",
|
|
"cli",
|
|
"command",
|
|
"exec",
|
|
"environment",
|
|
"run"
|
|
],
|
|
"author": "Todd Bluhm",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/toddbluhm/env-cmd/issues"
|
|
},
|
|
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
|
|
"dependencies": {
|
|
"cross-spawn": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"better-assert": "^1.0.2",
|
|
"coveralls": "^2.11.12",
|
|
"istanbul": "^0.4.4",
|
|
"mocha": "^3.0.2",
|
|
"proxyquire": "^1.7.10",
|
|
"sinon": "^1.17.5"
|
|
}
|
|
}
|