UNPKG

1.33 kBJSONView Raw
1{
2 "name": "concurrently",
3 "version": "6.5.0",
4 "description": "Run commands concurrently",
5 "main": "index.js",
6 "bin": {
7 "concurrently": "./bin/concurrently.js"
8 },
9 "engines": {
10 "node": ">=10.0.0"
11 },
12 "scripts": {
13 "lint": "eslint . --ignore-path .gitignore",
14 "report-coverage": "cat coverage/lcov.info | coveralls",
15 "test": "jest"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/open-cli-tools/concurrently.git"
20 },
21 "keywords": [
22 "bash",
23 "concurrent",
24 "parallel",
25 "concurrently",
26 "command",
27 "sh"
28 ],
29 "author": "Kimmo Brunfeldt",
30 "license": "MIT",
31 "dependencies": {
32 "chalk": "^4.1.0",
33 "date-fns": "^2.16.1",
34 "lodash": "^4.17.21",
35 "rxjs": "^6.6.3",
36 "spawn-command": "^0.0.2-1",
37 "supports-color": "^8.1.0",
38 "tree-kill": "^1.2.2",
39 "yargs": "^16.2.0"
40 },
41 "devDependencies": {
42 "coveralls": "^3.1.0",
43 "eslint": "^7.17.0",
44 "jest": "^26.6.3",
45 "jest-create-mock-instance": "^1.1.0"
46 },
47 "files": [
48 "bin",
49 "!**/fixtures",
50 "index.js",
51 "src",
52 "!*.spec.js"
53 ],
54 "jest": {
55 "collectCoverage": true,
56 "collectCoverageFrom": [
57 "src/**/*.js"
58 ],
59 "coveragePathIgnorePatterns": [
60 "/fixtures/",
61 "/node_modules/"
62 ],
63 "testEnvironment": "node"
64 }
65}