browser-sync-webpack-plugin
Version:
BrowserSync and Webpack integration
46 lines (45 loc) • 968 B
JSON
{
"name": "browser-sync-webpack-plugin",
"version": "2.3.0",
"description": "BrowserSync and Webpack integration",
"keywords": [
"webpack",
"webpack-plugin",
"browsersync",
"browser-sync",
"livereload",
"serve"
],
"main": "index.js",
"dependencies": {
"lodash": "^4"
},
"devDependencies": {
"husky": "^0.15.0-rc.9",
"lint-staged": "^7.0.0",
"standard": "^11.0.1"
},
"peerDependencies": {
"browser-sync": "^2",
"webpack": "^1 || ^2 || ^3 || ^4 || ^5"
},
"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",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}