package.json
1 { 2 "name": "http-errors", 3 "description": "Create HTTP error objects", 4 "version": "2.0.0", 5 "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)", 6 "contributors": [ 7 "Alan Plum <me@pluma.io>", 8 "Douglas Christopher Wilson <doug@somethingdoug.com>" 9 ], 10 "license": "MIT", 11 "repository": "jshttp/http-errors", 12 "dependencies": { 13 "depd": "2.0.0", 14 "inherits": "2.0.4", 15 "setprototypeof": "1.2.0", 16 "statuses": "2.0.1", 17 "toidentifier": "1.0.1" 18 }, 19 "devDependencies": { 20 "eslint": "7.32.0", 21 "eslint-config-standard": "14.1.1", 22 "eslint-plugin-import": "2.25.3", 23 "eslint-plugin-markdown": "2.2.1", 24 "eslint-plugin-node": "11.1.0", 25 "eslint-plugin-promise": "5.2.0", 26 "eslint-plugin-standard": "4.1.0", 27 "mocha": "9.1.3", 28 "nyc": "15.1.0" 29 }, 30 "engines": { 31 "node": ">= 0.8" 32 }, 33 "scripts": { 34 "lint": "eslint . && node ./scripts/lint-readme-list.js", 35 "test": "mocha --reporter spec --bail", 36 "test-ci": "nyc --reporter=lcov --reporter=text npm test", 37 "test-cov": "nyc --reporter=html --reporter=text npm test", 38 "version": "node scripts/version-history.js && git add HISTORY.md" 39 }, 40 "keywords": [ 41 "http", 42 "error" 43 ], 44 "files": [ 45 "index.js", 46 "HISTORY.md", 47 "LICENSE", 48 "README.md" 49 ] 50 }