-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 942 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 942 Bytes
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
{
"name": "install-all",
"version": "2.1.1",
"description": "Recursively install packages in all subdirectories with package.json files, using the appropriate package manager.",
"keywords": [
"install",
"packages",
"npm",
"yarn",
"pnpm",
"bun",
"recursive"
],
"main": "index.js",
"bin": {
"install-all": "index.js"
},
"author": "Ligerzero <ligerzero459@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"async": "^3.2.6",
"chalk": "^4.1.2",
"clui": "^0.3.6",
"figlet": "^1.11.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ligerzero459/install-all.git"
},
"homepage": "https://github.com/ligerzero459/install-all",
"bugs": {
"url": "https://github.com/ligerzero459/install-all/issues"
},
"engines": {
"node": ">=20"
}
}