-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.59 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.59 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "module-tree",
"description": "Create a visual tree of module dependencies using archy. Optionally pass a glob pattern to limit the result to names with that pattern, or a regex to selectively highlight package names.",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/module-tree",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Keith Williams (https://github.com/akileez)"
],
"repository": "jonschlinkert/module-tree",
"bugs": {
"url": "https://github.com/jonschlinkert/module-tree/issues"
},
"license": "MIT",
"files": [
"cli.js",
"index.js"
],
"main": "index.js",
"bin": {
"module-tree": "cli.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"ansi-yellow": "^0.1.1",
"archy": "^1.0.0",
"define-property": "^2.0.0",
"get-value": "^2.0.6",
"kind-of": "^6.0.2",
"micromatch": "^3.1.5",
"minimist": "^1.2.0",
"set-value": "^2.0.0",
"stringify-keys": "^0.3.0"
},
"devDependencies": {
"gulp-format-md": "^1.0.0",
"mocha": "^3.5.3"
},
"keywords": [
"module",
"pkg",
"tree"
],
"verb": {
"run": true,
"toc": false,
"layout": "global",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"normalize-pkg"
]
},
"reflinks": [
"archy",
"micromatch",
"stringify-keys"
],
"lint": {
"reflinks": true
}
}
}