forked from samshull/node-proxy
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 968 Bytes
/
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
{
"name": "node-proxy",
"version": "0.2.2",
"description": "A module for node implementing part of the Harmony Catch-All Proxies specification found at http://wiki.ecmascript.org/doku.php?id=harmony:proxies",
"keywords": [
"interceptor",
"proxy",
"overload",
"__noSuchMethod__"
],
"contributors": [ "Sam Shull <http://www.google.com/profiles/brickysam26>" ],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.html"
}
],
"bugs":{
"web":"http://github.com/brickysam26/node-proxy/issues"
},
"implements": [
"http://wiki.ecmascript.org/doku.php?id=harmony:proxies"
],
"engines": {
"node" : ">=0.1.103"
},
"repositories": [
{
"type": "git",
"url": "http://github.com/brickysam26/node-proxy"
}
],
"main": "./lib/node-proxy.node",
"scripts":{
"install":"make"
}
}