CoolFace
Apppublic

Pinsave/counterstrike

sourceHugging Faceupdated 3mo agoView on Hugging Face
1likes
package.json84 linesDownload Raw Back to picomatch
1{2  "name": "picomatch",3  "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",4  "version": "4.0.3",5  "homepage": "https://github.com/micromatch/picomatch",6  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",7  "funding": "https://github.com/sponsors/jonschlinkert",8  "repository": "micromatch/picomatch",9  "bugs": {10    "url": "https://github.com/micromatch/picomatch/issues"11  },12  "license": "MIT",13  "files": [14    "index.js",15    "posix.js",16    "lib"17  ],18  "sideEffects": false,19  "main": "index.js",20  "engines": {21    "node": ">=12"22  },23  "scripts": {24    "lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",25    "mocha": "mocha --reporter dot",26    "test": "npm run lint && npm run mocha",27    "test:ci": "npm run test:cover",28    "test:cover": "nyc npm run mocha"29  },30  "devDependencies": {31    "eslint": "^8.57.0",32    "fill-range": "^7.0.1",33    "gulp-format-md": "^2.0.0",34    "mocha": "^10.4.0",35    "nyc": "^15.1.0",36    "time-require": "github:jonschlinkert/time-require"37  },38  "keywords": [39    "glob",40    "match",41    "picomatch"42  ],43  "nyc": {44    "reporter": [45      "html",46      "lcov",47      "text-summary"48    ]49  },50  "verb": {51    "toc": {52      "render": true,53      "method": "preWrite",54      "maxdepth": 355    },56    "layout": "empty",57    "tasks": [58      "readme"59    ],60    "plugins": [61      "gulp-format-md"62    ],63    "lint": {64      "reflinks": true65    },66    "related": {67      "list": [68        "braces",69        "micromatch"70      ]71    },72    "reflinks": [73      "braces",74      "expand-brackets",75      "extglob",76      "fill-range",77      "micromatch",78      "minimatch",79      "nanomatch",80      "picomatch"81    ]82  }83}84