mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2026-01-25 14:27:09 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "env-cmd",
|
|
"version": "4.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",
|
|
"test-lint": "standard",
|
|
"coveralls": "coveralls < coverage/lcov.info",
|
|
"lint": "standard --fix"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/toddbluhm/env-cmd.git"
|
|
},
|
|
"keywords": [
|
|
"env",
|
|
"cli",
|
|
"command",
|
|
"exec",
|
|
"environment",
|
|
"run"
|
|
],
|
|
"author": "Todd Bluhm",
|
|
"contributors": [
|
|
"Eric Lanehart <eric@pushred.co>",
|
|
"Jon Scheiding <jonscheiding@gmail.com>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/toddbluhm/env-cmd/issues"
|
|
},
|
|
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
|
|
"dependencies": {
|
|
"cross-spawn": "^5.0.1"
|
|
},
|
|
"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",
|
|
"standard": "^8.6.0"
|
|
}
|
|
}
|