1{ 2 "name": "negotiator", 3 "description": "HTTP content negotiation", 4 "version": "0.6.3", 5 "contributors": [ 6 "Douglas Christopher Wilson <doug@somethingdoug.com>", 7 "Federico Romero <federico.romero@outboxlabs.com>", 8 "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)" 9 ], 10 "license": "MIT", 11 "keywords": [ 12 "http", 13 "content negotiation", 14 "accept", 15 "accept-language", 16 "accept-encoding", 17 "accept-charset" 18 ], 19 "repository": "jshttp/negotiator", 20 "devDependencies": { 21 "eslint": "7.32.0", 22 "eslint-plugin-markdown": "2.2.1", 23 "mocha": "9.1.3", 24 "nyc": "15.1.0" 25 }, 26 "files": [ 27 "lib/", 28 "HISTORY.md", 29 "LICENSE", 30 "index.js", 31 "README.md" 32 ], 33 "engines": { 34 "node": ">= 0.6" 35 }, 36 "scripts": { 37 "lint": "eslint .", 38 "test": "mocha --reporter spec --check-leaks --bail test/", 39 "test-ci": "nyc --reporter=lcov --reporter=text npm test", 40 "test-cov": "nyc --reporter=html --reporter=text npm test" 41 } 42} 43