-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
45 lines (45 loc) · 974 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"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 || ^3",
"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 <[email protected]>",
"license": "MIT",
"private": false,
"lint-staged": {
"lib/**/*.js": [
"standard --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}