UNPKG

1.97 kBJSONView Raw
1{
2 "name": "micromatch",
3 "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. Just use `micromatch.isMatch()` instead of `minimatch()`, or use `micromatch()` instead of `multimatch()`.",
4 "version": "2.1.2",
5 "homepage": "https://github.com/jonschlinkert/micromatch",
6 "author": {
7 "name": "Jon Schlinkert",
8 "url": "https://github.com/jonschlinkert"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/jonschlinkert/micromatch.git"
13 },
14 "bugs": {
15 "url": "https://github.com/jonschlinkert/micromatch/issues"
16 },
17 "license": {
18 "type": "MIT",
19 "url": "https://github.com/jonschlinkert/micromatch/blob/master/LICENSE"
20 },
21 "files": [
22 "index.js",
23 "lib/"
24 ],
25 "main": "index.js",
26 "engines": {
27 "node": ">=0.10.0"
28 },
29 "scripts": {
30 "test": "mocha",
31 "prepublish": "browserify -o browser.js -e index.js"
32 },
33 "dependencies": {
34 "arr-diff": "^1.0.1",
35 "braces": "^1.8.0",
36 "debug": "^2.1.3",
37 "expand-brackets": "^0.1.1",
38 "filename-regex": "^2.0.0",
39 "is-glob": "^1.1.3",
40 "kind-of": "^1.1.0",
41 "object.omit": "^0.2.1",
42 "parse-glob": "^3.0.0",
43 "regex-cache": "^0.3.0"
44 },
45 "devDependencies": {
46 "benchmarked": "^0.1.3",
47 "browserify": "^9.0.3",
48 "chalk": "^1.0.0",
49 "minimatch": "^2.0.1",
50 "minimist": "^1.1.0",
51 "mocha": "^2.1.0",
52 "multimatch": "^2.0.0",
53 "should": "^5.0.1",
54 "write": "^0.1.1"
55 },
56 "keywords": [
57 "bash",
58 "expand",
59 "expansion",
60 "expression",
61 "file",
62 "files",
63 "filter",
64 "find",
65 "glob",
66 "globbing",
67 "globs",
68 "globstar",
69 "match",
70 "matcher",
71 "matches",
72 "matching",
73 "minimatch",
74 "multimatch",
75 "path",
76 "pattern",
77 "patterns",
78 "regex",
79 "regexp",
80 "regular",
81 "shell",
82 "wildcard"
83 ],
84 "verb": {
85 "deps": {
86 "ignore": ["browser.js"]
87 }
88 }
89}