CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json78 linesDownload Raw Back to braces
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": "3.0.3",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": ">=8"26  },27  "scripts": {28    "test": "mocha",29    "benchmark": "node benchmark"30  },31  "dependencies": {32    "fill-range": "^7.1.1"33  },34  "devDependencies": {35    "ansi-colors": "^3.2.4",36    "bash-path": "^2.0.1",37    "gulp-format-md": "^2.0.0",38    "mocha": "^6.1.1"39  },40  "keywords": [41    "alpha",42    "alphabetical",43    "bash",44    "brace",45    "braces",46    "expand",47    "expansion",48    "filepath",49    "fill",50    "fs",51    "glob",52    "globbing",53    "letter",54    "match",55    "matches",56    "matching",57    "number",58    "numerical",59    "path",60    "range",61    "ranges",62    "sh"63  ],64  "verb": {65    "toc": false,66    "layout": "default",67    "tasks": [68      "readme"69    ],70    "lint": {71      "reflinks": true72    },73    "plugins": [74      "gulp-format-md"75    ]76  }77}78