-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (39 loc) · 838 Bytes
/
package.json
File metadata and controls
46 lines (39 loc) · 838 Bytes
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
{
"name": "catalyst-proxy",
"description": "A proxy that accelerates requests via multipart downloading",
"author": "Alexandre Kirszenberg <a.kirszenberg@gmail.com>",
"version": "0.2.0",
"license": "MIT",
"keywords": [
"multipart",
"proxy",
"http"
],
"repository": {
"type": "git",
"url": "git@github.com:morhaus/catalyst-proxy.git"
},
"bin": {
"catalyst": "./bin/catalyst.js"
},
"scripts": {
"prepublish": "grunt"
},
"engines": {
"node": ">=0.10.0"
},
"engineStrict": true,
"dependencies": {
"commander": "2.*",
"lodash": "*",
"multisource-stream": "0.0.3",
"tmpl-log": "0.0.*"
},
"devDependencies": {
"grunt": "*",
"grunt-cli": "*",
"grunt-contrib-watch": "*",
"grunt-contrib-coffee": "*",
"grunt-contrib-clean": "*"
}
}