mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
98 lines
2.2 KiB
JSON
98 lines
2.2 KiB
JSON
{
|
|
"name": "env-cmd",
|
|
"version": "11.0.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": ">=20.10.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": [
|
|
"Anton Versal <ant.ver@gmail.com>",
|
|
"Eric Lanehart <eric@pushred.co>",
|
|
"Jon Scheiding <jonscheiding@gmail.com>",
|
|
"Kyle Hensel <me@kyle.kiwi>",
|
|
"Nicholas Krul <nicholas.krul@gmail.com>",
|
|
"serapath (Alexander Praetorius) <dev@serapath.de>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/toddbluhm/env-cmd/issues"
|
|
},
|
|
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
|
|
"dependencies": {
|
|
"@commander-js/extra-typings": "^14.0.0",
|
|
"commander": "^14.0.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": "^24.0.10",
|
|
"@types/sinon": "^17.0.3",
|
|
"c8": "^10.1.2",
|
|
"chai": "^6.0.1",
|
|
"coveralls": "^3.0.0",
|
|
"esmock": "^2.6.9",
|
|
"globals": "^16.0.0",
|
|
"husky": "^9.1.7",
|
|
"mocha": "^11.0.0",
|
|
"sinon": "^21.0.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2",
|
|
"typescript-eslint": "^8.15.0"
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"c8": {
|
|
"reporter": [
|
|
"text",
|
|
"lcov"
|
|
]
|
|
},
|
|
"release": {
|
|
"branches": ["master"],
|
|
"tagFormat": "${version}"
|
|
},
|
|
"publishConfig": {
|
|
"provenance": true
|
|
}
|
|
}
|