1 | {
|
2 | "name": "extglob",
|
3 | "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.",
|
4 | "version": "3.0.0",
|
5 | "homepage": "https://github.com/micromatch/extglob",
|
6 | "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
7 | "contributors": [
|
8 | "Brian Woodward (https://twitter.com/doowb)",
|
9 | "Devon Govett (http://badassjs.com)",
|
10 | "Isiah Meadows (https://www.isiahmeadows.com)",
|
11 | "Jon Schlinkert (http://twitter.com/jonschlinkert)",
|
12 | "Matt Bierner (http://mattbierner.com)",
|
13 | "Shinnosuke Watanabe (https://shinnn.github.io)",
|
14 | "Daniel Tschinder (https://github.com/danez)"
|
15 | ],
|
16 | "repository": "micromatch/extglob",
|
17 | "bugs": {
|
18 | "url": "https://github.com/micromatch/extglob/issues"
|
19 | },
|
20 | "license": "MIT",
|
21 | "files": [
|
22 | "index.js",
|
23 | "lib"
|
24 | ],
|
25 | "main": "index.js",
|
26 | "engines": {
|
27 | "node": ">=4.0.0"
|
28 | },
|
29 | "scripts": {
|
30 | "test": "mocha"
|
31 | },
|
32 | "dependencies": {
|
33 | "array-unique": "^0.3.2",
|
34 | "define-property": "^2.0.2",
|
35 | "expand-brackets": "^4.0.0",
|
36 | "fragment-cache": "^0.2.1",
|
37 | "regex-not": "^1.0.0",
|
38 | "snapdragon": "^0.12.0",
|
39 | "snapdragon-capture": "^0.2.0",
|
40 | "to-regex": "^3.0.1"
|
41 | },
|
42 | "devDependencies": {
|
43 | "bash-match": "^1.0.2",
|
44 | "for-own": "^1.0.0",
|
45 | "gulp": "^3.9.1",
|
46 | "gulp-eslint": "^4.0.0",
|
47 | "gulp-format-md": "^1.0.0",
|
48 | "gulp-istanbul": "^1.1.2",
|
49 | "gulp-mocha": "^3.0.1",
|
50 | "gulp-unused": "^0.2.1",
|
51 | "helper-changelog": "^0.3.0",
|
52 | "is-windows": "^1.0.1",
|
53 | "micromatch": "^3.0.4",
|
54 | "minimatch": "^3.0.4",
|
55 | "minimist": "^1.2.0",
|
56 | "mocha": "^3.5.0",
|
57 | "multimatch": "^2.1.0"
|
58 | },
|
59 | "keywords": [
|
60 | "bash",
|
61 | "extended",
|
62 | "extglob",
|
63 | "glob",
|
64 | "globbing",
|
65 | "ksh",
|
66 | "match",
|
67 | "pattern",
|
68 | "patterns",
|
69 | "regex",
|
70 | "test",
|
71 | "wildcard"
|
72 | ],
|
73 | "lintDeps": {
|
74 | "devDependencies": {
|
75 | "files": {
|
76 | "options": {
|
77 | "ignore": [
|
78 | "benchmark/**/*.js"
|
79 | ]
|
80 | }
|
81 | }
|
82 | }
|
83 | },
|
84 | "verb": {
|
85 | "toc": false,
|
86 | "layout": "default",
|
87 | "tasks": [
|
88 | "readme"
|
89 | ],
|
90 | "related": {
|
91 | "list": [
|
92 | "braces",
|
93 | "expand-brackets",
|
94 | "expand-range",
|
95 | "fill-range",
|
96 | "micromatch"
|
97 | ]
|
98 | },
|
99 | "helpers": [
|
100 | "helper-changelog"
|
101 | ],
|
102 | "plugins": [
|
103 | "gulp-format-md"
|
104 | ],
|
105 | "lint": {
|
106 | "reflinks": true
|
107 | }
|
108 | }
|
109 | }
|