1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| {
| "name": "content-type-parser",
| "description": "Parse the value of the Content-Type header",
| "keywords": [
| "content-type",
| "http"
| ],
| "version": "1.0.2",
| "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
| "license": "MIT",
| "repository": "jsdom/content-type-parser",
| "main": "lib/content-type-parser.js",
| "files": [
| "lib/"
| ],
| "scripts": {
| "test": "mocha",
| "lint": "eslint lib test"
| },
| "devDependencies": {
| "eslint": "^3.8.0",
| "mocha": "^3.1.2"
| }
| }
|
|