package.json
1 { 2 "name": "content-type", 3 "description": "Create and parse HTTP Content-Type header", 4 "version": "1.0.5", 5 "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", 6 "license": "MIT", 7 "keywords": [ 8 "content-type", 9 "http", 10 "req", 11 "res", 12 "rfc7231" 13 ], 14 "repository": "jshttp/content-type", 15 "devDependencies": { 16 "deep-equal": "1.0.1", 17 "eslint": "8.32.0", 18 "eslint-config-standard": "15.0.1", 19 "eslint-plugin-import": "2.27.5", 20 "eslint-plugin-node": "11.1.0", 21 "eslint-plugin-promise": "6.1.1", 22 "eslint-plugin-standard": "4.1.0", 23 "mocha": "10.2.0", 24 "nyc": "15.1.0" 25 }, 26 "files": [ 27 "LICENSE", 28 "HISTORY.md", 29 "README.md", 30 "index.js" 31 ], 32 "engines": { 33 "node": ">= 0.6" 34 }, 35 "scripts": { 36 "lint": "eslint .", 37 "test": "mocha --reporter spec --check-leaks --bail test/", 38 "test-ci": "nyc --reporter=lcovonly --reporter=text npm test", 39 "test-cov": "nyc --reporter=html --reporter=text npm test", 40 "version": "node scripts/version-history.js && git add HISTORY.md" 41 } 42 }