forked from gakimball/tree-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 790 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
{
"name": "tree-search",
"version": "1.0.1",
"description": "Create a function to search a tree of items. Published to ymm registry because the author won't maintain the project any more",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gakimball/tree-search.git"
},
"keywords": [
"tree",
"search",
"json",
"recursive"
],
"author": "Geoff Kimball <geoff@geoffkimball.com> (http://geoffkimball.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gakimball/tree-search/issues"
},
"homepage": "https://github.com/gakimball/tree-search#readme",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2"
},
"engines": {
"node": ">=4"
}
}