CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json71 linesDownload Raw Back to chokidar
1{2  "name": "chokidar",3  "description": "Minimal and efficient cross-platform file watching library",4  "version": "3.6.0",5  "homepage": "https://github.com/paulmillr/chokidar",6  "author": "Paul Miller (https://paulmillr.com)",7  "contributors": [8    "Paul Miller (https://paulmillr.com)",9    "Elan Shanker"10  ],11  "engines": {12    "node": ">= 8.10.0"13  },14  "main": "index.js",15  "types": "./types/index.d.ts",16  "dependencies": {17    "anymatch": "~3.1.2",18    "braces": "~3.0.2",19    "glob-parent": "~5.1.2",20    "is-binary-path": "~2.1.0",21    "is-glob": "~4.0.1",22    "normalize-path": "~3.0.0",23    "readdirp": "~3.6.0"24  },25  "optionalDependencies": {26    "fsevents": "~2.3.2"27  },28  "devDependencies": {29    "@types/node": "^14",30    "chai": "^4.3",31    "dtslint": "^3.3.0",32    "eslint": "^7.0.0",33    "mocha": "^7.0.0",34    "rimraf": "^3.0.0",35    "sinon": "^9.0.1",36    "sinon-chai": "^3.3.0",37    "typescript": "^4.4.3",38    "upath": "^1.2.0"39  },40  "files": [41    "index.js",42    "lib/*.js",43    "types/index.d.ts"44  ],45  "repository": {46    "type": "git",47    "url": "git+https://github.com/paulmillr/chokidar.git"48  },49  "bugs": {50    "url": "https://github.com/paulmillr/chokidar/issues"51  },52  "license": "MIT",53  "scripts": {54    "dtslint": "dtslint types",55    "lint": "eslint --report-unused-disable-directives --ignore-path .gitignore .",56    "build": "npm ls",57    "mocha": "mocha --exit --timeout 90000",58    "test": "npm run lint && npm run mocha"59  },60  "keywords": [61    "fs",62    "watch",63    "watchFile",64    "watcher",65    "watching",66    "file",67    "fsevents"68  ],69  "funding": "https://paulmillr.com/funding/"70}71