mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
Bumps [commander](https://github.com/tj/commander.js) from 5.1.0 to 12.1.0. - [Release notes](https://github.com/tj/commander.js/releases) - [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/tj/commander.js/compare/v5.1.0...v12.1.0) --- updated-dependencies: - dependency-name: commander dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
88 lines
1.9 KiB
JSON
88 lines
1.9 KiB
JSON
{
|
|
"name": "env-cmd",
|
|
"version": "10.1.0",
|
|
"description": "Executes a command using the environment variables in an env file",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"bin": {
|
|
"env-cmd": "bin/env-cmd.js"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"test": "mocha",
|
|
"test-cover": "c8 npm test",
|
|
"coveralls": "coveralls < coverage/lcov.info",
|
|
"lint": "npx eslint .",
|
|
"build": "tsc",
|
|
"watch": "tsc -w"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/toddbluhm/env-cmd.git"
|
|
},
|
|
"keywords": [
|
|
"env",
|
|
"environment",
|
|
"cli",
|
|
"command",
|
|
"cmd",
|
|
"execute",
|
|
"run",
|
|
"file",
|
|
"variables",
|
|
"config"
|
|
],
|
|
"author": "Todd Bluhm",
|
|
"contributors": [
|
|
"Eric Lanehart <eric@pushred.co>",
|
|
"Jon Scheiding <jonscheiding@gmail.com>",
|
|
"serapath (Alexander Praetorius) <dev@serapath.de>",
|
|
"Anton Versal <ant.ver@gmail.com>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/toddbluhm/env-cmd/issues"
|
|
},
|
|
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
|
|
"dependencies": {
|
|
"commander": "^12.1.0",
|
|
"cross-spawn": "^7.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.6.0",
|
|
"@commitlint/config-conventional": "^19.6.0",
|
|
"@eslint/js": "^9.16.0",
|
|
"@types/chai": "^5.0.1",
|
|
"@types/cross-spawn": "^6.0.6",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^22.10.1",
|
|
"@types/sinon": "^17.0.3",
|
|
"c8": "^10.1.2",
|
|
"chai": "^5.1.2",
|
|
"coveralls": "^3.0.0",
|
|
"esmock": "^2.6.9",
|
|
"globals": "^15.12.0",
|
|
"husky": "^9.1.7",
|
|
"mocha": "^11.0.0",
|
|
"sinon": "^19.0.2",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2",
|
|
"typescript-eslint": "^8.15.0"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"c8": {
|
|
"reporter": [
|
|
"text",
|
|
"lcov"
|
|
]
|
|
}
|
|
}
|