env-cmd/package.json
Todd Bluhm 39616b70b1 Removed -e/--env flags, allow # comment lines in env file, bug fixes
- 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
2016-08-17 16:24:01 -05:00

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"
}
}