This repository has been archived by the owner on May 19, 2021. It is now read-only.
forked from brianmcd/contextify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "contextify",
"version": "0.1.15",
"description": "Turn an object into a persistent execution context.",
"author": "Brian McDaniel <brianmcd05@gmail.com>",
"contributors": [
"Assaf Arkin <assaf@labnotes.org> (http://labnotes.org/)" ,
"Benjamin Byholm (https://research.it.abo.fi/people/bbyholm)",
"Marshall Roch <marshall@mroch.com>",
"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)",
"Paul Tan (https://github.com/pyokagan)",
"Jeremy Stashewsky <jstash@gmail.com>",
"Rex Morgan (http://www.rexflex.net/)",
"Tom Gallacher <me@tomg.co> (http://tomg.co)",
"Kevin Decker <kpdecker@gmail.com> (http://www.incaseofstairs.com)",
"Sergei Ianovich (https://github.com/yanovich)",
"Andrew Paprocki (https://github.com/apaprocki)",
"Trygve Lie (https://github.com/trygve-lie)",
"Ido Ben-Yair (https://github.com/idoby)",
"Rod Vagg (https://r.va.gg/)"
],
"keywords": ["context","vm"],
"repository": {
"type" : "git",
"url": "https://github.com/brianmcd/contextify.git"
},
"main": "./lib/contextify",
"scripts": {
"test": "nodeunit test/"
},
"engines": {
"node": ">=0.10.11"
},
"licenses": [
{
"type" : "MIT",
"url" : "http://github.com/brianmcd/contextify/blob/master/LICENSE.txt"
}
],
"dependencies": {
"bindings": "^1.2.1",
"nan": "^2.1.0"
},
"devDependencies": {
"nodeunit" : ">=0.5.x"
}
}