forked from mattdesl/budo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.34 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
{
"name": "budo",
"version": "9.4.7",
"description": "a browserify server for rapid prototyping",
"main": "index.js",
"bin": {
"budo": "./bin/cmd.js"
},
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"bole": "^2.0.0",
"browserify": "^13.0.1",
"chokidar": "^1.0.1",
"connect-pushstate": "^1.0.0",
"escape-html": "^1.0.3",
"events": "^1.0.2",
"garnish": "^5.0.0",
"get-ports": "^1.0.2",
"http-proxy": "^1.14.0",
"inject-lr-script": "^2.0.0",
"internal-ip": "^1.0.1",
"micromatch": "^2.2.0",
"minimist": "^1.1.0",
"on-finished": "^2.3.0",
"on-headers": "^1.0.1",
"once": "^1.3.2",
"opn": "^3.0.2",
"pem": "^1.8.3",
"resolve": "^1.1.6",
"resp-modifier": "^6.0.0",
"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",
"term-color": "^1.0.1",
"tiny-lr": "^0.2.0",
"url-trim": "^1.0.0",
"watchify-middleware": "^1.6.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"2d-context": "^1.2.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"brfs": "^1.4.0",
"canvas-loop": "^1.0.4",
"connect-slashes": "^1.3.1",
"getuservideo": "^0.1.3",
"ndjson": "^1.4.1",
"request": "^2.53.0",
"standard": "^8.6.0",
"tap-spec": "^4.1.0",
"tape": "^4.0.0",
"through2": "^2.0.0",
"tree-kill": "^1.0.0",
"win-spawn": "^2.0.0"
},
"scripts": {
"test": "standard && tape test/test*.js | tap-spec",
"start": "node bin/cmd.js example/app.js:bundle.js --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"
}
}