123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "negotiator",
- "description": "HTTP content negotiation",
- "version": "0.6.2",
- "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",
- "devDependencies": {
- "eslint": "5.16.0",
- "eslint-plugin-markdown": "1.0.0",
- "mocha": "6.1.4",
- "nyc": "14.0.0"
- },
- "files": [
- "lib/",
- "HISTORY.md",
- "LICENSE",
- "index.js",
- "README.md"
- ],
- "engines": {
- "node": ">= 0.6"
- },
- "scripts": {
- "lint": "eslint --plugin markdown --ext js,md .",
- "test": "mocha --reporter spec --check-leaks --bail test/",
- "test-cov": "nyc --reporter=html --reporter=text npm test",
- "test-travis": "nyc --reporter=text npm test"
- }
- }
|