forked from othiym23/node-continuation-local-storage
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "cls-hooked",
"version": "4.3.0",
"description": "CLS using AsyncWrap instead of async-listener - Node >= 4.7.0",
"main": "index.js",
"files": [
"index.js",
"context.js",
"context-legacy.js"
],
"scripts": {
"test": "mocha test/*.js & tap test/tap/*.tap.js",
"test-mocha": "mocha test/*.js",
"test-tap": "tap test/tap/*.tap.js",
"debug": "node --nolazy --debug-brk=5858 "
},
"repository": {
"type": "git",
"url": "https://github.com/jeff-lewis/cls-hooked.git"
},
"keywords": [
"threading",
"shared",
"context"
],
"author": "Forrest L Norvell <[email protected]>",
"contributors": [
"Tim Caswell <[email protected]>",
"Forrest L Norvell <[email protected]>",
"Jeff Lewis <[email protected]>"
],
"license": "BSD-2-Clause",
"engineStrict": false,
"engines": {
"node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1"
},
"dependencies": {
"async-hook-jl": "^1.7.6",
"emitter-listener": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.0",
"mocha": "^6.2.2",
"semver": "^6.3.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"superagent": "^5.1.2",
"tap": "^10.7.3"
}
}