CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json40 linesDownload Raw Back to on-finished
1{2  "name": "on-finished",3  "description": "Execute a callback when a request closes, finishes, or errors",4  "version": "2.4.1",5  "contributors": [6    "Douglas Christopher Wilson <doug@somethingdoug.com>",7    "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"8  ],9  "license": "MIT",10  "repository": "jshttp/on-finished",11  "dependencies": {12    "ee-first": "1.1.1"13  },14  "devDependencies": {15    "eslint": "7.32.0",16    "eslint-config-standard": "14.1.1",17    "eslint-plugin-import": "2.25.4",18    "eslint-plugin-markdown": "2.2.1",19    "eslint-plugin-node": "11.1.0",20    "eslint-plugin-promise": "5.2.0",21    "eslint-plugin-standard": "4.1.0",22    "mocha": "9.2.1",23    "nyc": "15.1.0"24  },25  "engines": {26    "node": ">= 0.8"27  },28  "files": [29    "HISTORY.md",30    "LICENSE",31    "index.js"32  ],33  "scripts": {34    "lint": "eslint .",35    "test": "mocha --reporter spec --bail --check-leaks test/",36    "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",37    "test-cov": "nyc --reporter=html --reporter=text npm test"38  }39}40