Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « minimatch « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 92ccac5fb982bdabf073e9fbc5a6ba8cf83b5ab6 (plain)
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
{
  "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
  "name": "minimatch",
  "description": "a glob matcher in javascript",
  "version": "0.1.3",
  "repository": {
    "type": "git",
    "url": "git://github.com/isaacs/minimatch.git"
  },
  "main": "minimatch.js",
  "scripts": {
    "test": "tap test"
  },
  "engines": {
    "node": "*"
  },
  "dependencies": {
    "lru-cache": "~1.0.5"
  },
  "devDependencies": {
    "tap": "~0.1.3"
  },
  "licenses" : [
    {
      "type" : "MIT",
      "url" : "http://github.com/isaacs/minimatch/raw/master/LICENSE"
    }
  ]
}