forked from emgeee/recursive-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1013 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
46
47
{
"name": "recursive-install",
"version": "1.3.0",
"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": "./node_modules/.bin/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.7.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"mocha": "^2.5.3"
},
"standard": {
"ignore": [
"public/**",
"src/vendor/**"
],
"global": [
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it"
]
}
}