UNPKG

1.3 kBJSONView Raw
1{
2 "name": "serve-favicon",
3 "description": "favicon serving middleware with caching",
4 "version": "2.5.0",
5 "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
6 "license": "MIT",
7 "keywords": [
8 "express",
9 "favicon",
10 "middleware"
11 ],
12 "repository": "expressjs/serve-favicon",
13 "dependencies": {
14 "etag": "~1.8.1",
15 "fresh": "0.5.2",
16 "ms": "2.1.1",
17 "parseurl": "~1.3.2",
18 "safe-buffer": "5.1.1"
19 },
20 "devDependencies": {
21 "eslint": "4.19.1",
22 "eslint-config-standard": "11.0.0",
23 "eslint-plugin-import": "2.9.0",
24 "eslint-plugin-markdown": "1.0.0-beta.6",
25 "eslint-plugin-node": "6.0.1",
26 "eslint-plugin-promise": "3.7.0",
27 "eslint-plugin-standard": "3.0.1",
28 "istanbul": "0.4.5",
29 "mocha": "2.5.3",
30 "supertest": "1.1.0",
31 "temp-path": "1.0.0"
32 },
33 "files": [
34 "LICENSE",
35 "HISTORY.md",
36 "index.js"
37 ],
38 "engines": {
39 "node": ">= 0.8.0"
40 },
41 "scripts": {
42 "lint": "eslint --plugin markdown --ext js,md .",
43 "test": "mocha --reporter spec --bail --check-leaks 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 }
47}