-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "@gnoesiboe/run-concurrently",
"version": "3.0.3",
"description": "Command line tool to use 'concurrently' with a JSON configuration, to make it more readable and easier to manage.",
"main": "./src/cli.js",
"dependencies": {
"chalk": "^4.1.2",
"concurrently": "^8.0.1",
"joi": "^17.4.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"jest": "^27.3.1",
"prettier": "^2.4.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch --notify",
"prettier": "prettier --write 'src/**/*.{js,json,md}'"
},
"engines": {
"node": "^16.0.0"
},
"bin": {
"run-concurrently": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gnoesiboe/run-concurrently.git"
},
"keywords": [
"concurrently",
"cli",
"taskrunner"
],
"author": "Gijs Nieuwenhuis <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/gnoesiboe/run-concurrently/issues"
},
"homepage": "https://github.com/gnoesiboe/run-concurrently#readme"
}