Initial commit

This commit is contained in:
2026-08-30 15:23:57 +02:00
commit dab5679098
1293 changed files with 240952 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"name": "negotiator",
"description": "HTTP content negotiation",
"version": "1.1.0",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Federico Romero <federico.romero@outboxlabs.com>",
"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)"
],
"license": "MIT",
"keywords": [
"http",
"content negotiation",
"accept",
"accept-language",
"accept-encoding",
"accept-charset"
],
"repository": "jshttp/negotiator",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/express"
},
"dependencies": {
"content-type": "^2.1.0"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-plugin-markdown": "2.2.1",
"mocha": "^11.7.0",
"nyc": "^17.1.0",
"vitest": "3.2.4"
},
"files": [
"lib/",
"index.js"
],
"engines": {
"node": ">=18"
},
"scripts": {
"bench": "vitest bench",
"lint": "eslint .",
"test": "mocha --reporter spec --check-leaks test/",
"test:debug": "mocha --reporter spec --check-leaks --inspect --inspect-brk test/",
"test-ci": "nyc --reporter=lcovonly --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}