39 lines
958 B
JSON
39 lines
958 B
JSON
{
|
|
"name": "accepts",
|
|
"description": "Higher-level content negotiation",
|
|
"version": "1.2.13",
|
|
"contributors": [
|
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "jshttp/accepts",
|
|
"dependencies": {
|
|
"mime-types": "~2.1.6",
|
|
"negotiator": "0.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"istanbul": "0.3.19",
|
|
"mocha": "~1.21.5"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"HISTORY.md",
|
|
"index.js"
|
|
],
|
|
"engines": {
|
|
"node": ">= 0.6"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha --reporter spec --check-leaks --bail test/",
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
|
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
|
|
},
|
|
"keywords": [
|
|
"content",
|
|
"negotiation",
|
|
"accept",
|
|
"accepts"
|
|
]
|
|
}
|