forked from othiym23/node-continuation-local-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 826 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": "continuation-local-storage",
"version": "3.1.4",
"description": "userland implementation of https://github.com/joyent/node/issues/5243",
"main": "context.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.tap.js"
},
"repository": {
"type": "git",
"url": "https://github.com/othiym23/node-continuation-local-storage.git"
},
"keywords": [
"threading",
"shared",
"context",
"domains",
"tracing",
"logging"
],
"author": "Forrest L Norvell <[email protected]>",
"contributors": [
"Tim Caswell <[email protected]>",
"Forrest L Norvell <[email protected]>"
],
"license": "BSD",
"devDependencies": {
"tap": "^0.7.1"
},
"dependencies": {
"async-listener": "^0.5.0",
"emitter-listener": "^1.0.1"
}
}