-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 KB
/
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
46
47
48
49
50
51
52
53
54
55
{
"name": "browser-sync-client",
"description": "Client-side scripts for BrowserSync",
"version": "2.27.12",
"homepage": "https://github.com/shakyshane/browser-sync-client",
"author": "Shane Osbourne <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/shakyshane/browser-sync-client.git"
},
"bugs": {
"url": "https://github.com/shakyshane/browser-sync-client/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/shakyshane/browser-sync-client/blob/master/LICENSE-MIT"
}
],
"main": "index.js",
"files": [
"dist"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "npm run clean && npm run tsc && npm run bundle",
"clean": "rm -rf dist/* _dist/*",
"watch": "npm run build:prod -- --watch",
"prepublishOnly": "npm run build",
"bundle": "esbuild _dist/index.js --bundle --outdir=dist --minify",
"tsc": "rm -rf dist/* dist2/* && tsc"
},
"devDependencies": {
"@types/node": "^8",
"esbuild": "^0.14.27",
"nanologger": "^1.3.1",
"socket.io-client": "^4.4.1"
},
"keywords": [],
"dependencies": {
"etag": "1.8.1",
"fresh": "0.5.2",
"mitt": "^1.1.3",
"rxjs": "^5.5.6",
"typescript": "^4.6.2"
},
"directories": {
"lib": "lib",
"test": "test"
},
"license": "ISC",
"gitHead": "01caeb38f034eb04619c4c14c9376f14eb76184b"
}