opusdev/vector-similarity-api
1
1{2 "name": "statuses",3 "description": "HTTP status utility",4 "version": "2.0.2",5 "contributors": [6 "Douglas Christopher Wilson <doug@somethingdoug.com>",7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"8 ],9 "repository": "jshttp/statuses",10 "license": "MIT",11 "keywords": [12 "http",13 "status",14 "code"15 ],16 "files": [17 "HISTORY.md",18 "index.js",19 "codes.json",20 "LICENSE"21 ],22 "devDependencies": {23 "csv-parse": "4.16.3",24 "eslint": "7.19.0",25 "eslint-config-standard": "14.1.1",26 "eslint-plugin-import": "2.31.0",27 "eslint-plugin-markdown": "1.0.2",28 "eslint-plugin-node": "11.1.0",29 "eslint-plugin-promise": "4.3.1",30 "eslint-plugin-standard": "4.1.0",31 "mocha": "8.4.0",32 "nyc": "15.1.0",33 "raw-body": "2.5.2",34 "stream-to-array": "2.3.0"35 },36 "engines": {37 "node": ">= 0.8"38 },39 "scripts": {40 "build": "node scripts/build.js",41 "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js",42 "lint": "eslint --plugin markdown --ext js,md .",43 "test": "mocha --reporter spec --check-leaks --bail test/",44 "test-ci": "nyc --reporter=lcov --reporter=text npm test",45 "test-cov": "nyc --reporter=html --reporter=text npm test",46 "update": "npm run fetch && npm run build",47 "version": "node scripts/version-history.js && git add HISTORY.md"48 }49}50 