-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
46
47
48
49
50
{
"name": "@forward-software/gulp-browser-sync",
"version": "1.0.1",
"description": "Custom plugin for gulp toolkit to setup a browser that can be auto-refreshed when files change",
"author": "ForWarD Software (https://forwardsoftware.solutions/)",
"license": "MIT",
"keywords": [
"gulp",
"gulp-plugin",
"gulp-tasks",
"browsersync",
"browser-sync"
],
"homepage": "https://github.com/forwardsoftware/gulp-plugins/tree/main/plugins/gulp-browser-sync#readme",
"bugs": "https://github.com/forwardsoftware/gulp-plugins/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/forwardsoftware/gulp-plugins.git",
"directory": "plugins/gulp-browser-sync"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "gulp clean",
"watch": "gulp watch",
"build": "gulp build"
},
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-env": "catalog:",
"@rollup/plugin-babel": "catalog:",
"@rollup/plugin-commonjs": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@rollup/plugin-strip": "catalog:",
"@rollup/plugin-terser": "catalog:",
"gulp": "catalog:",
"rimraf": "catalog:",
"rollup": "catalog:"
},
"peerDependencies": {
"gulp": ">=5"
},
"dependencies": {
"browser-sync": "^3.0.4"
}
}