package.json
1 { 2 "name": "statuses", 3 "description": "HTTP status utility", 4 "version": "1.5.0", 5 "contributors": [ 6 "Douglas Christopher Wilson <doug@somethingdoug.com>", 7 "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)" 8 ], 9 "repository": "jshttp/statuses", 10 "license": "MIT", 11 "keywords": [ 12 "http", 13 "status", 14 "code" 15 ], 16 "files": [ 17 "HISTORY.md", 18 "index.js", 19 "codes.json", 20 "LICENSE" 21 ], 22 "devDependencies": { 23 "csv-parse": "1.2.4", 24 "eslint": "4.19.1", 25 "eslint-config-standard": "11.0.0", 26 "eslint-plugin-import": "2.9.0", 27 "eslint-plugin-markdown": "1.0.0-beta.6", 28 "eslint-plugin-node": "6.0.1", 29 "eslint-plugin-promise": "3.7.0", 30 "eslint-plugin-standard": "3.0.1", 31 "istanbul": "0.4.5", 32 "mocha": "1.21.5", 33 "raw-body": "2.3.2", 34 "stream-to-array": "2.3.0" 35 }, 36 "engines": { 37 "node": ">= 0.6" 38 }, 39 "scripts": { 40 "build": "node scripts/build.js", 41 "fetch": "node scripts/fetch-apache.js && node scripts/fetch-iana.js && node scripts/fetch-nginx.js && node scripts/fetch-node.js", 42 "lint": "eslint --plugin markdown --ext js,md .", 43 "test": "mocha --reporter spec --check-leaks --bail test/", 44 "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", 45 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", 46 "update": "npm run fetch && npm run build" 47 } 48 }