-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.47 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
59
60
61
62
63
{
"name": "glob-fs",
"description": "file globbing for node.js. speedy and powerful alternative to node-glob.",
"version": "0.1.7",
"homepage": "https://github.com/jonschlinkert/glob-fs",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/glob-fs",
"bugs": {
"url": "https://github.com/jonschlinkert/glob-fs/issues"
},
"license": "MIT",
"files": [
"index.js",
"middleware/",
"lib/"
],
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"async": "^1.3.0",
"bluebird": "^2.9.33",
"component-emitter": "^1.2.0",
"ends-with": "^0.2.0",
"export-files": "^2.0.1",
"extend-shallow": "^2.0.0",
"get-value": "^1.1.5",
"glob-fs-dotfiles": "^0.1.6",
"glob-fs-gitignore": "^0.1.5",
"glob-parent": "^1.2.0",
"graceful-fs": "^4.1.2",
"is-dotdir": "^0.1.0",
"is-dotfile": "^1.0.1",
"is-glob": "^2.0.0",
"is-windows": "^0.1.0",
"kind-of": "^2.0.0",
"lazy-cache": "^0.1.0",
"micromatch": "jonschlinkert/micromatch#2.2.0",
"mixin-object": "^2.0.0",
"object-visit": "^0.1.0",
"object.omit": "^1.1.0",
"parse-filepath": "^0.6.1",
"relative": "^3.0.1",
"set-value": "^0.2.0",
"starts-with": "^1.0.2",
"through2": "^2.0.0"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"keywords": [
"file",
"fs",
"glob",
"match",
"path"
]
}