package.json
 1  {
 2    "name": "anymatch",
 3    "version": "2.0.0",
 4    "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions",
 5    "files": [
 6      "index.js"
 7    ],
 8    "author": {
 9      "name": "Elan Shanker",
10      "url": "http://github.com/es128"
11    },
12    "license": "ISC",
13    "homepage": "https://github.com/micromatch/anymatch",
14    "repository": {
15      "type": "git",
16      "url": "https://github.com/micromatch/anymatch"
17    },
18    "bugs": {
19      "url": "https://github.com/micromatch/anymatch/issues"
20    },
21    "keywords": [
22      "match",
23      "any",
24      "string",
25      "file",
26      "fs",
27      "list",
28      "glob",
29      "regex",
30      "regexp",
31      "regular",
32      "expression",
33      "function"
34    ],
35    "scripts": {
36      "test": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"
37    },
38    "dependencies": {
39      "micromatch": "^3.1.4",
40      "normalize-path": "^2.1.1"
41    },
42    "devDependencies": {
43      "coveralls": "^2.7.0",
44      "istanbul": "^0.4.5",
45      "mocha": "^3.0.0"
46    }
47  }