1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "mime-types",
- "description": "The ultimate javascript content-type utility.",
- "version": "2.1.27",
- "contributors": [
- "Douglas Christopher Wilson <doug@somethingdoug.com>",
- "Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)",
- "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
- ],
- "license": "MIT",
- "keywords": [
- "mime",
- "types"
- ],
- "repository": "jshttp/mime-types",
- "dependencies": {
- "mime-db": "1.44.0"
- },
- "devDependencies": {
- "eslint": "6.8.0",
- "eslint-config-standard": "14.1.1",
- "eslint-plugin-import": "2.20.2",
- "eslint-plugin-markdown": "1.0.2",
- "eslint-plugin-node": "11.1.0",
- "eslint-plugin-promise": "4.2.1",
- "eslint-plugin-standard": "4.0.1",
- "mocha": "7.1.1",
- "nyc": "15.0.1"
- },
- "files": [
- "HISTORY.md",
- "LICENSE",
- "index.js"
- ],
- "engines": {
- "node": ">= 0.6"
- },
- "scripts": {
- "lint": "eslint --plugin markdown --ext js,md .",
- "test": "mocha --reporter spec test/test.js",
- "test-cov": "nyc --reporter=html --reporter=text npm test",
- "test-travis": "nyc --reporter=text npm test"
- }
- }
|