CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json48 linesDownload Raw Back to finalhandler
1{2  "name": "finalhandler",3  "description": "Node.js final http responder",4  "version": "1.3.2",5  "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",6  "license": "MIT",7  "repository": "pillarjs/finalhandler",8  "dependencies": {9    "debug": "2.6.9",10    "encodeurl": "~2.0.0",11    "escape-html": "~1.0.3",12    "on-finished": "~2.4.1",13    "parseurl": "~1.3.3",14    "statuses": "~2.0.2",15    "unpipe": "~1.0.0"16  },17  "devDependencies": {18    "eslint": "7.32.0",19    "eslint-config-standard": "14.1.1",20    "eslint-plugin-import": "2.26.0",21    "eslint-plugin-markdown": "2.2.1",22    "eslint-plugin-node": "11.1.0",23    "eslint-plugin-promise": "5.2.0",24    "eslint-plugin-standard": "4.1.0",25    "mocha": "10.0.0",26    "nyc": "15.1.0",27    "readable-stream": "2.3.6",28    "safe-buffer": "5.2.1",29    "supertest": "6.2.4"30  },31  "files": [32    "LICENSE",33    "HISTORY.md",34    "SECURITY.md",35    "index.js"36  ],37  "engines": {38    "node": ">= 0.8"39  },40  "scripts": {41    "lint": "eslint .",42    "test": "mocha --reporter spec --check-leaks test/",43    "test-ci": "nyc --reporter=lcovonly --reporter=text npm test",44    "test-cov": "nyc --reporter=html --reporter=text npm test",45    "test-inspect": "mocha --reporter spec --inspect --inspect-brk test/"46  }47}48