CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json103 linesDownload Raw Back to express
1{2  "name": "express",3  "description": "Fast, unopinionated, minimalist web framework",4  "version": "4.22.1",5  "author": "TJ Holowaychuk <tj@vision-media.ca>",6  "contributors": [7    "Aaron Heckmann <aaron.heckmann+github@gmail.com>",8    "Ciaran Jessup <ciaranj@gmail.com>",9    "Douglas Christopher Wilson <doug@somethingdoug.com>",10    "Guillermo Rauch <rauchg@gmail.com>",11    "Jonathan Ong <me@jongleberry.com>",12    "Roman Shtylman <shtylman+expressjs@gmail.com>",13    "Young Jae Sim <hanul@hanul.me>"14  ],15  "license": "MIT",16  "repository": "expressjs/express",17  "homepage": "http://expressjs.com/",18  "funding": {19    "type": "opencollective",20    "url": "https://opencollective.com/express"21  },22  "keywords": [23    "express",24    "framework",25    "sinatra",26    "web",27    "http",28    "rest",29    "restful",30    "router",31    "app",32    "api"33  ],34  "dependencies": {35    "accepts": "~1.3.8",36    "array-flatten": "1.1.1",37    "body-parser": "~1.20.3",38    "content-disposition": "~0.5.4",39    "content-type": "~1.0.4",40    "cookie": "~0.7.1",41    "cookie-signature": "~1.0.6",42    "debug": "2.6.9",43    "depd": "2.0.0",44    "encodeurl": "~2.0.0",45    "escape-html": "~1.0.3",46    "etag": "~1.8.1",47    "finalhandler": "~1.3.1",48    "fresh": "~0.5.2",49    "http-errors": "~2.0.0",50    "merge-descriptors": "1.0.3",51    "methods": "~1.1.2",52    "on-finished": "~2.4.1",53    "parseurl": "~1.3.3",54    "path-to-regexp": "~0.1.12",55    "proxy-addr": "~2.0.7",56    "qs": "~6.14.0",57    "range-parser": "~1.2.1",58    "safe-buffer": "5.2.1",59    "send": "~0.19.0",60    "serve-static": "~1.16.2",61    "setprototypeof": "1.2.0",62    "statuses": "~2.0.1",63    "type-is": "~1.6.18",64    "utils-merge": "1.0.1",65    "vary": "~1.1.2"66  },67  "devDependencies": {68    "after": "0.8.2",69    "connect-redis": "3.4.2",70    "cookie-parser": "1.4.6",71    "cookie-session": "2.0.0",72    "ejs": "3.1.9",73    "eslint": "8.47.0",74    "express-session": "1.17.2",75    "hbs": "4.2.0",76    "marked": "0.7.0",77    "method-override": "3.0.0",78    "mocha": "^6.2.2",79    "morgan": "1.10.0",80    "nyc": "^14.1.1",81    "pbkdf2-password": "1.2.1",82    "supertest": "^6.1.6",83    "vhost": "~3.0.2"84  },85  "engines": {86    "node": ">= 0.10.0"87  },88  "files": [89    "LICENSE",90    "History.md",91    "Readme.md",92    "index.js",93    "lib/"94  ],95  "scripts": {96    "lint": "eslint .",97    "test": "mocha --require test/support/env --reporter spec --bail --check-leaks test/ test/acceptance/",98    "test-ci": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test",99    "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test",100    "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/"101  }102}103