-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "recursive-install",
"version": "1.4.1",
"description": "CLI tool to recursive search child directories and run 'npm install' when a package.json file is found.",
"main": "recursive-install.js",
"keywords": [
"install",
"recursive",
"npm install"
],
"scripts": {
"test": "mocha"
},
"bin": {
"npm-recursive-install": "./recursive-install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/emgeee/recursive-install"
},
"author": "Matt Green <[email protected]> (https://greenin.space)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emgeee/recursive-install/issues"
},
"dependencies": {
"shelljs": "^0.8.4",
"yargs": "^16.2.0"
},
"devDependencies": {
"fs-extra": "^10.0.0",
"mocha": "^9.1.3",
"uuid": "^8.3.2"
},
"standard": {
"ignore": [
"public/**",
"src/vendor/**"
],
"global": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it"
]
},
"engines": {
"node": ">=10"
}
}