forked from othiym23/node-continuation-local-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.15 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
53
54
55
56
57
58
{
"author": "Refael Ackermann <me@refack.com>",
"contributors": [
"Forrest L Norvell <ogd@aoaioxxysz.net>",
"Tim Caswell <tim@creationix.com>"
],
"dependencies": {
"async-listener": "^0.6.3",
"emitter-listener": "^1.0.1",
"shimmer": "^1.1.0"
},
"description": "userland implementation of CLS via AsyncListener (node ^4.0.0)",
"devDependencies": {
"asynctrace": "^1.6.2",
"istanbul": "^0.4.5",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"tap": "^6.3.2"
},
"directories": {
"test": "test"
},
"engines": {
"node": "4"
},
"jshintConfig": {
"globals": {
"after": true,
"afterEach": true,
"before": true,
"beforeEach": true,
"describe": true,
"it": true,
"expect": true,
"createNamespace": true
},
"node": true,
"strict": true,
"trailing": true,
"unused": true
},
"keywords": [
"threading",
"shared",
"context",
"domains",
"tracing",
"logging"
],
"license": "BSD",
"main": "context.js",
"name": "cls2",
"repository": "node4good/node-cls",
"scripts": {
"test": "mocha"
},
"version": "2.1.0"
}