This repository has been archived by the owner on Dec 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
52 lines (52 loc) · 1.64 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
48
49
50
51
52
{
"name": "contextify",
"version": "1.0.0",
"description": "Turn an object into a persistent execution context.",
"author": "Brian McDaniel <[email protected]>",
"contributors": [
"Assaf Arkin <[email protected]> (http://labnotes.org/)",
"Benjamin Byholm (https://research.it.abo.fi/people/bbyholm)",
"Marshall Roch <[email protected]>",
"Nathan Rajlich <[email protected]> (http://n8.io)",
"Paul Tan (https://github.com/pyokagan)",
"Jeremy Stashewsky <[email protected]>",
"Rex Morgan (http://www.rexflex.net/)",
"Tom Gallacher <[email protected]> (http://tomg.co)",
"Kevin Decker <[email protected]> (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/)",
"Tomoaki Abe (https://github.com/abetomo)"
],
"keywords": [
"context",
"vm"
],
"repository": {
"type": "git",
"url": "https://github.com/brianmcd/contextify.git"
},
"main": "./lib/contextify",
"scripts": {
"test": "nodeunit test/"
},
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/brianmcd/contextify/blob/master/LICENSE.txt"
}
],
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.11.1"
},
"devDependencies": {
"nodeunit": "^0.11.3"
}
}