-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 893 Bytes
/
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
{
"name": "unorepo",
"version": "0.2.2",
"description": "A tool for managing a monorepo via lerna and yarn workspaces",
"author": "Zach Olivare <https://github.com/0livare>",
"license": "ISC",
"repository": "https://github.com/0livare/unorepo",
"main": "src/unorepo.js",
"bin": {
"uno": "src/unorepo.js"
},
"files": [
"src/**/*.js"
],
"scripts": {
"start": "node src/unorepo.js",
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.2",
"chokidar": "^3.5.3",
"commander": "^2.19.0",
"execa": "^2.0.3",
"node-emoji": "^1.10.0",
"ora": "^3.4.0"
},
"peerDependencies": {
"lerna": "3.x"
},
"devDependencies": {
"jest": "^26.2.2",
"prettier": "^2.0.5"
},
"keywords": [
"mono",
"repo",
"monorepo",
"mono-repo",
"repository",
"management",
"modules",
"build",
"watch"
]
}