This repository was archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "node-proxy",
"version": "0.9.0",
"description": "A module for node implementing __noSuchMethod__-type handlers, such as object overloading, as part of the Harmony Catch-All Proxies specification found at http://wiki.ecmascript.org/doku.php?id=harmony:proxies",
"keywords": [
"interceptor",
"proxy",
"overload",
"__noSuchMethod__",
"es6"
],
"dependencies": {
"bindings": "1",
"nan": "^2.1.0"
},
"contributors": [
"Sam Shull <http://www.google.com/profiles/brickysam26>",
"richardms <https://github.com/richardms>",
"Andreas Botsikas <http://webinos.org/bio-andreas-botsikas/>",
"Kenneth Bentley <mechanicofthesequence@gmail.com>",
"Gabor Mezo <https://github.com/unbornchikken>"
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.html"
}
],
"bugs": {
"url": "http://github.com/samshull/node-proxy/issues"
},
"implements": [
"http://wiki.ecmascript.org/doku.php?id=harmony:proxies"
],
"engines": {
"node": ">= 0.10.36",
"npm": ">= 1.1.17"
},
"repository": {
"type": "git",
"url": "http://github.com/samshull/node-proxy"
},
"main": "./lib/node-proxy.js",
"scripts": {
"install": "node-gyp configure build",
"test": "node test/test.js"
}
}