UNPKG

1.91 kBJSONView Raw
1{
2 "name": "micromatch",
3 "description": "Glob matching for javascript/node.js. A faster alternative to minimatch (10-45x faster on avg), with all the features you're used to using in your Grunt and gulp tasks.",
4 "version": "2.0.0",
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.7.0",
36 "debug": "^2.1.2",
37 "expand-brackets": "^0.1.1",
38 "extglob": "^0.2.0",
39 "filename-regex": "^2.0.0",
40 "is-glob": "^1.1.1",
41 "kind-of": "^1.1.0",
42 "object.omit": "^0.2.1",
43 "parse-glob": "^2.1.1",
44 "regex-cache": "^0.3.0"
45 },
46 "devDependencies": {
47 "benchmarked": "^0.1.3",
48 "browserify": "^9.0.3",
49 "chalk": "^1.0.0",
50 "helper-reflinks": "^0.4.0",
51 "minimatch": "^2.0.1",
52 "minimist": "^1.1.0",
53 "mocha": "^2.1.0",
54 "multimatch": "^2.0.0",
55 "should": "^5.0.1",
56 "write": "^0.1.1"
57 },
58 "keywords": [
59 "bash",
60 "expand",
61 "expansion",
62 "expression",
63 "file",
64 "files",
65 "filter",
66 "find",
67 "glob",
68 "globbing",
69 "globs",
70 "globstar",
71 "match",
72 "matcher",
73 "matches",
74 "matching",
75 "minimatch",
76 "multimatch",
77 "path",
78 "pattern",
79 "patterns",
80 "regex",
81 "regexp",
82 "regular",
83 "shell",
84 "wildcard"
85 ]
86}