-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathpackage.json
100 lines (100 loc) · 2.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "budo",
"version": "11.8.4",
"description": "a browserify server for rapid prototyping",
"main": "index.js",
"bin": {
"budo": "./bin/cmd.js"
},
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"bole": "^2.0.0",
"browserify": "^17.0.0",
"chokidar": "^3.5.2",
"connect-pushstate": "^1.1.0",
"escape-html": "^1.0.3",
"events": "^1.0.2",
"garnish": "^5.0.0",
"get-ports": "^1.0.2",
"inject-lr-script": "^2.1.0",
"internal-ip": "^3.0.1",
"micromatch": "^4.0.5",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"once": "^1.3.2",
"opn": "^3.0.2",
"path-is-absolute": "^1.0.1",
"pem": "^1.13.2",
"reload-css": "^1.0.0",
"resolve": "^1.1.6",
"serve-static": "^1.10.0",
"simple-html-index": "^1.4.0",
"stacked": "^1.1.1",
"stdout-stream": "^1.4.0",
"strip-ansi": "^3.0.0",
"subarg": "^1.0.0",
"term-color": "^1.0.1",
"url-trim": "^1.0.0",
"watchify-middleware": "^1.9.1",
"ws": "^6.2.2",
"xtend": "^4.0.0"
},
"devDependencies": {
"2d-context": "^1.2.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"brfs": "^2.0.2",
"canvas-loop": "^1.0.4",
"connect-slashes": "^1.3.1",
"getuservideo": "^0.1.3",
"ndjson": "^1.4.1",
"request": "^2.88.0",
"standard": "^16.0.4",
"tap-spec": "^5.0.0",
"tape": "^4.0.0",
"through2": "^2.0.0",
"tree-kill": "^1.2.2",
"uglify-js": "^2.7.5",
"win-spawn": "^2.0.0"
},
"scripts": {
"bundle-live-client": "node bin/bundle-livereload-client.js",
"prepublishOnly": "npm run bundle-live-client",
"test": "standard && tape test/test*.js | tap-spec",
"live": "node example/live.js example/app.js:bundle.js --dir example -- -t [ babelify --presets [ es2015 ] ]",
"start": "node bin/cmd.js example/app.js:bundle.js --live -v --dir example -- -t [ babelify --presets [ es2015 ] ]",
"ssl": "node bin/cmd.js example/app.js:bundle.js --ssl --live -v --dir example -- -t [ babelify --presets [ es2015 ] ]",
"pushstate": "node bin/cmd.js example/app.js:bundle.js -v --dir example --live --pushstate -- -t [ babelify --presets [ es2015 ] ]"
},
"keywords": [
"browserify",
"watchify",
"browser",
"dev",
"development",
"server",
"beefy",
"wzrd",
"local",
"locally",
"localhost",
"watch",
"live",
"reload",
"livereload",
"lr"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/budo.git"
},
"homepage": "https://github.com/mattdesl/budo",
"bugs": {
"url": "https://github.com/mattdesl/budo/issues"
}
}