browser-sync-webpack-plugin
Version:
BrowserSync and Webpack integration
48 lines (47 loc) • 978 B
JSON
{
"name": "browser-sync-webpack-plugin",
"version": "2.4.0",
"description": "BrowserSync and Webpack integration",
"keywords": [
"webpack",
"webpack-plugin",
"browsersync",
"browser-sync",
"livereload",
"serve"
],
"main": "index.js",
"dependencies": {
"lodash": "^4"
},
"devDependencies": {
"husky": "^9",
"lint-staged": "^15",
"standard": "^17"
},
"peerDependencies": {
"browser-sync": "^2 || ^3",
"webpack": "^1 || ^2 || ^3 || ^4 || ^5"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/Va1/browser-sync-webpack-plugin.git"
},
"homepage": "https://github.com/Va1/browser-sync-webpack-plugin",
"author": "Valentyn Barmashyn <barmashyn.val@gmail.com>",
"license": "MIT",
"private": false,
"lint-staged": {
"lib/**/*.js": [
"standard --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}