-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
38 lines (38 loc) · 860 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
38
{
"name": "continuation-local-storage",
"version": "3.2.1",
"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-2-Clause",
"devDependencies": {
"semver": "^5.4.1",
"tap": "^10.3.1"
},
"dependencies": {
"async-listener": "^0.6.0",
"emitter-listener": "^1.1.1"
}
}