env-cmd/package.json
2019-05-04 02:57:30 -05:00

88 lines
2.1 KiB
JSON

{
"name": "env-cmd",
"version": "9.0.0",
"description": "Executes a command using the envs in the provided env file",
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"env-cmd": "bin/env-cmd.js"
},
"scripts": {
"test": "mocha -r ts-node/register ./**/*.ts",
"test-cover": "nyc --reporter=lcov --reporter=text npm test",
"test-lint": "eslint ./**/*.ts",
"coveralls": "coveralls < coverage/lcov.info",
"lint": "eslint --fix ./**/*.ts",
"build": "tsc"
},
"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>",
"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": "^2.20.0",
"cross-spawn": "6.0.5"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/cross-spawn": "6.0.0",
"@types/mocha": "5.2.6",
"@types/node": "^12.0.0",
"@types/sinon": "^7.0.11",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"chai": "4.2.0",
"coveralls": "3.0.3",
"eslint": "^5.16.0",
"eslint-config-standard-with-typescript": "^7.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"sinon": "^7.3.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}