CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json49 linesDownload Raw Back to anymatch
1{2  "name": "anymatch",3  "version": "3.1.3",4  "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions",5  "files": [6    "index.js",7    "index.d.ts"8  ],9  "dependencies": {10    "normalize-path": "^3.0.0",11    "picomatch": "^2.0.4"12  },13  "author": {14    "name": "Elan Shanker",15    "url": "https://github.com/es128"16  },17  "license": "ISC",18  "homepage": "https://github.com/micromatch/anymatch",19  "repository": {20    "type": "git",21    "url": "https://github.com/micromatch/anymatch"22  },23  "keywords": [24    "match",25    "any",26    "string",27    "file",28    "fs",29    "list",30    "glob",31    "regex",32    "regexp",33    "regular",34    "expression",35    "function"36  ],37  "scripts": {38    "test": "nyc mocha",39    "mocha": "mocha"40  },41  "devDependencies": {42    "mocha": "^6.1.3",43    "nyc": "^14.0.0"44  },45  "engines": {46    "node": ">= 8"47  }48}49