package.json
  1  {
  2    "name": "braces",
  3    "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.",
  4    "version": "2.3.2",
  5    "homepage": "https://github.com/micromatch/braces",
  6    "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7    "contributors": [
  8      "Brian Woodward (https://twitter.com/doowb)",
  9      "Elan Shanker (https://github.com/es128)",
 10      "Eugene Sharygin (https://github.com/eush77)",
 11      "hemanth.hm (http://h3manth.com)",
 12      "Jon Schlinkert (http://twitter.com/jonschlinkert)"
 13    ],
 14    "repository": "micromatch/braces",
 15    "bugs": {
 16      "url": "https://github.com/micromatch/braces/issues"
 17    },
 18    "license": "MIT",
 19    "files": [
 20      "index.js",
 21      "lib"
 22    ],
 23    "main": "index.js",
 24    "engines": {
 25      "node": ">=0.10.0"
 26    },
 27    "scripts": {
 28      "test": "mocha",
 29      "benchmark": "node benchmark"
 30    },
 31    "dependencies": {
 32      "arr-flatten": "^1.1.0",
 33      "array-unique": "^0.3.2",
 34      "extend-shallow": "^2.0.1",
 35      "fill-range": "^4.0.0",
 36      "isobject": "^3.0.1",
 37      "repeat-element": "^1.1.2",
 38      "snapdragon": "^0.8.1",
 39      "snapdragon-node": "^2.0.1",
 40      "split-string": "^3.0.2",
 41      "to-regex": "^3.0.1"
 42    },
 43    "devDependencies": {
 44      "ansi-cyan": "^0.1.1",
 45      "benchmarked": "^2.0.0",
 46      "brace-expansion": "^1.1.8",
 47      "cross-spawn": "^5.1.0",
 48      "gulp": "^3.9.1",
 49      "gulp-eslint": "^4.0.0",
 50      "gulp-format-md": "^1.0.0",
 51      "gulp-istanbul": "^1.1.2",
 52      "gulp-mocha": "^3.0.1",
 53      "gulp-unused": "^0.2.1",
 54      "is-windows": "^1.0.1",
 55      "minimatch": "^3.0.4",
 56      "mocha": "^3.2.0",
 57      "noncharacters": "^1.1.0",
 58      "text-table": "^0.2.0",
 59      "time-diff": "^0.3.1",
 60      "yargs-parser": "^8.0.0"
 61    },
 62    "keywords": [
 63      "alpha",
 64      "alphabetical",
 65      "bash",
 66      "brace",
 67      "braces",
 68      "expand",
 69      "expansion",
 70      "filepath",
 71      "fill",
 72      "fs",
 73      "glob",
 74      "globbing",
 75      "letter",
 76      "match",
 77      "matches",
 78      "matching",
 79      "number",
 80      "numerical",
 81      "path",
 82      "range",
 83      "ranges",
 84      "sh"
 85    ],
 86    "verb": {
 87      "toc": false,
 88      "layout": "default",
 89      "tasks": [
 90        "readme"
 91      ],
 92      "lint": {
 93        "reflinks": true
 94      },
 95      "plugins": [
 96        "gulp-format-md"
 97      ],
 98      "related": {
 99        "list": [
100          "expand-brackets",
101          "extglob",
102          "fill-range",
103          "micromatch",
104          "nanomatch"
105        ]
106      }
107    }
108  }