| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "name": "concurrently",
- "version": "6.5.1",
- "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": "https://github.com/open-cli-tools/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",
- "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"
- }
- }
|