-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
93 lines (93 loc) · 1.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bash-glob",
"description": "Bash-powered globbing for node.js",
"version": "2.0.0",
"homepage": "https://github.com/micromatch/bash-glob",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "micromatch/bash-glob",
"bugs": {
"url": "https://github.com/micromatch/bash-glob/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"bash-path": "^1.0.1",
"component-emitter": "^1.2.1",
"cross-spawn": "^5.1.0",
"each-parallel-async": "^1.0.0",
"extend-shallow": "^2.0.1",
"is-extglob": "^2.1.1",
"is-glob": "^4.0.0"
},
"devDependencies": {
"arr-union": "^3.1.0",
"array-unique": "^0.3.2",
"async-array-reduce": "^1.0.0",
"delete": "^1.1.0",
"glob": "^7.1.2",
"gulp-format-md": "^1.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0"
},
"keywords": [
"bash",
"expand",
"expansion",
"expression",
"file",
"files",
"filter",
"find",
"glob",
"globbing",
"globs",
"globstar",
"match",
"matcher",
"matches",
"matching",
"micromatch",
"minimatch",
"multimatch",
"nanomatch",
"path",
"pattern",
"patterns",
"regex",
"regexp",
"regular",
"shell",
"wildcard"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"bash-match",
"braces",
"micromatch",
"nanomatch"
]
},
"lint": {
"reflinks": true
}
}
}