-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.19 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
53
54
55
56
57
58
{
"name": "toolkit-tree",
"description": "Generates a formatted tree with all toolkit-related module dependencies. Useful for creating a tree to include in developer documentation of a toolkit project.",
"version": "0.1.1",
"homepage": "https://github.com/jonschlinkert/toolkit-tree",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/toolkit-tree",
"bugs": {
"url": "https://github.com/jonschlinkert/toolkit-tree/issues"
},
"license": "MIT",
"files": [
"bin",
"index.js"
],
"main": "index.js",
"bin": {
"toolkit-tree": "bin/cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"archy": "^1.0.0",
"extend-shallow": "^2.0.1",
"log-utils": "^0.2.1"
},
"devDependencies": {
"gulp-format-md": "^0.1.11"
},
"keywords": [
"toolkit",
"tree"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": []
},
"reflinks": [
"verb",
"verb-generate-readme"
]
}
}