concurrently-with-grid
Version:
Run commands concurrently
75 lines (74 loc) • 1.6 kB
JSON
{
"name": "concurrently-with-grid",
"version": "6.2.3",
"description": "Run commands concurrently",
"main": "index.js",
"bin": {
"concurrently": "bin/concurrently.js"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"report-coverage": "cat coverage/lcov.info | coveralls",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimmobrunfeldt/concurrently.git"
},
"keywords": [
"bash",
"concurrent",
"parallel",
"concurrently",
"command",
"sh"
],
"author": "Kimmo Brunfeldt",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"date-fns": "^2.16.1",
"lodash": "^4.17.21",
"neo-blessed": "^0.2.0",
"read-pkg": "^5.2.0",
"rxjs": "^6.6.3",
"spawn-command": "^0.0.2-1",
"supports-color": "^8.1.0",
"tree-kill": "^1.2.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0"
},
"files": [
"bin",
"!**/fixtures",
"index.js",
"src",
"!*.spec.js"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coveragePathIgnorePatterns": [
"/fixtures/",
"/node_modules/"
],
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/kimmobrunfeldt/concurrently/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/concurrently#readme",
"directories": {
"doc": "docs"
}
}