mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
44 lines
986 B
JSON
44 lines
986 B
JSON
{
|
|
"name": "env-cmd",
|
|
"version": "1.0.1",
|
|
"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"
|
|
}
|
|
}
|