-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "budo-chrome",
"version": "2.2.0",
"description": "an extension of budo dev server that supports live script injection",
"main": "index.js",
"license": "MIT",
"bin": {
"budo-chrome": "./cmd.js"
},
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"bole": "^2.0.0",
"budo": "^6.0.4",
"chrome-launch": "^1.1.3",
"chrome-remote-interface": "^0.6.1",
"minimist": "^1.1.1",
"rimraf": "^2.3.2",
"tmp": "0.0.25",
"xtend": "^4.0.0"
},
"devDependencies": {
"canvas-testbed": "^1.0.3"
},
"scripts": {
"open": "./cmd.js example/index.js:bundle.js --open --no-debug --dir example",
"live": "./cmd.js example/index.js:bundle.js --open --no-debug --live --dir example",
"chrome-osx": "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome http://localhost:9966/ --remote-debugging-port=9222",
"start": "./cmd.js example/index.js:bundle.js --no-debug --live --dir example"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/budo-chrome.git"
},
"homepage": "https://github.com/mattdesl/budo-chrome",
"bugs": {
"url": "https://github.com/mattdesl/budo-chrome/issues"
}
}