urltomarkdown/node_modules/negotiator/package.json

43 lines
993 B
JSON
Raw Normal View History

2022-01-08 17:05:05 +00:00
{
2022-01-08 17:17:05 +00:00
"name": "negotiator",
"description": "HTTP content negotiation",
2022-12-21 22:28:59 +00:00
"version": "0.6.3",
2022-01-08 17:05:05 +00:00
"contributors": [
2022-01-08 17:17:05 +00:00
"Douglas Christopher Wilson <doug@somethingdoug.com>",
"Federico Romero <federico.romero@outboxlabs.com>",
"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)"
2022-01-08 17:05:05 +00:00
],
2022-01-08 17:17:05 +00:00
"license": "MIT",
"keywords": [
"http",
"content negotiation",
"accept",
"accept-language",
"accept-encoding",
"accept-charset"
],
"repository": "jshttp/negotiator",
2022-01-08 17:05:05 +00:00
"devDependencies": {
2022-12-21 22:28:59 +00:00
"eslint": "7.32.0",
"eslint-plugin-markdown": "2.2.1",
"mocha": "9.1.3",
"nyc": "15.1.0"
2022-01-08 17:05:05 +00:00
},
"files": [
"lib/",
"HISTORY.md",
"LICENSE",
"index.js",
"README.md"
],
2022-01-08 17:17:05 +00:00
"engines": {
"node": ">= 0.6"
2022-01-08 17:05:05 +00:00
},
"scripts": {
2022-12-21 22:28:59 +00:00
"lint": "eslint .",
2022-01-08 17:05:05 +00:00
"test": "mocha --reporter spec --check-leaks --bail test/",
2022-12-21 22:28:59 +00:00
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
2022-01-08 17:17:05 +00:00
}
2022-01-08 17:05:05 +00:00
}