-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 929 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
33
34
35
36
37
38
39
40
41
42
{
"name": "globbing",
"private": true,
"description": "Cheatsheet and introduction to globbing, aka glob matching or filepath expansion, a concept from Bash that is used for matching files using wildcards.",
"version": "0.1.0",
"homepage": "https://github.com/begin/globbing",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "begin/globbing",
"license": "MIT",
"devDependencies": {
"gulp-format-md": "^0.1.12"
},
"verb": {
"toc": true,
"layout": false,
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
},
"related": {
"list": []
},
"reflinks": [
"bash",
"bash-glob",
"brace-expansion",
"braces",
"character-classes",
"expand-brackets",
"extglob",
"glob",
"micromatch",
"minimatch",
"nanomatch"
]
}
}