package.json
 1  {
 2    "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me)",
 3    "name": "minimatch",
 4    "description": "a glob matcher in javascript",
 5    "version": "3.0.4",
 6    "repository": {
 7      "type": "git",
 8      "url": "git://github.com/isaacs/minimatch.git"
 9    },
10    "main": "minimatch.js",
11    "scripts": {
12      "test": "tap test/*.js --cov",
13      "preversion": "npm test",
14      "postversion": "npm publish",
15      "postpublish": "git push origin --all; git push origin --tags"
16    },
17    "engines": {
18      "node": "*"
19    },
20    "dependencies": {
21      "brace-expansion": "^1.1.7"
22    },
23    "devDependencies": {
24      "tap": "^10.3.2"
25    },
26    "license": "ISC",
27    "files": [
28      "minimatch.js"
29    ]
30  }