This repository has been archived by the owner on Nov 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "monorepo-run",
"version": "0.4.2",
"description": "Run scripts in monorepo with colors, streaming and separated panes",
"main": "src/index.js",
"bin": {
"mono-run": "src/bin/mono-run.js",
"monorepo-run": "src/bin/mono-run.js"
},
"scripts": {
"test": "yarn run lint",
"lint": "eslint .",
"prepublishOnly": "yarn run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/monorepo-run.git"
},
"keywords": [
"monorepo",
"workspace",
"run",
"script",
"clui"
],
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akryum/monorepo-run/issues"
},
"homepage": "https://github.com/Akryum/monorepo-run#readme",
"engines": {
"node": ">=10"
},
"dependencies": {
"ansi-escapes": "^4.2.1",
"cac": "^6.5.3",
"chalk": "^2.4.2",
"consola": "^2.10.1",
"globby": "^10.0.1",
"multispinner": "^0.2.1",
"neo-blessed": "^0.2.0",
"node-cleanup": "^2.1.2",
"node-pty": "^0.9.0-beta28"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-eslint": "^10.0.1",
"eslint": "^6.5.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}