request-favicon
Version:
An express.js middleware for handling noisy favicon.ico
59 lines (58 loc) • 1.45 kB
JSON
{
"name": "request-favicon",
"version": "2.0.2",
"description": "An express.js middleware for handling noisy favicon.ico",
"main": "lib/",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard \"lib/**/*.js\" --fix",
"mocha": "mocha ./test/*.test.js",
"test": "npm run lint && nyc npm run mocha"
},
"repository": "honzahommer/request-favicon",
"author": "Honza Hommer <honza@hommer.cz>",
"homepage": "https://github.com/honzahommer/request-favicon#README",
"keywords": [
"express",
"favicon",
"middleware",
"mw"
],
"engines": {
"node": ">= 8"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"license": "ISC",
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"semistandard": {
"env": [
"mocha"
]
},
"devDependencies": {
"chai": "^4.1.0",
"chai-http": "^4.2.1",
"express": "^4.15.3",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"semistandard": "^13.0.1"
},
"dependencies": {}
}