-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 968 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
39
40
41
{
"name": "node-cls",
"version": "1.0.7",
"description": "Continuation Local Storage based on async_hooks",
"main": "index.js",
"scripts": {
"test": "eslint ./ && jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix"
},
"keywords": [
"continuation-local-storage",
"continuation local storage",
"cls",
"async_hooks",
"context",
"domain",
"bluebird",
"context",
"session",
"async",
"thread"
],
"author": "Lars-Erik Roald <[email protected]>",
"license": "ISC",
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.6.0",
"eslint-plugin-jest": "^23.0.4",
"jest": "^24.9.0"
},
"repository": {
"type": "git",
"url": "[email protected]:alfateam/node-cls.git"
},
"homepage": "https://github.com/alfateam/node-cls/blob/master/README.md"
}