forked from open-cli-tools/concurrently
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "concurrently",
"version": "6.0.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/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",
"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"
}
}