env-cmd/package.json
Todd Bluhm fbb5ac6d68
Regex for parsing, support inline comments, support key value format
- Moved over to using regex for parsing the env file
- Added support for inline comments
- Added support for `key value` pairing file format
- Will now ignore invalid lines in env file, instead of throwing an error
- Removed old test cases
- Added more specific test cases
2016-08-18 16:48:40 -05:00

44 lines
986 B
JSON

{
"name": "env-cmd",
"version": "2.1.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"
}
}