-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.62 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
59
60
61
62
{
"name": "asynchronous-local-storage",
"version": "1.0.2",
"license": "MIT",
"description": "Asynchronous local storage implementation based on Node.js ALS with fallback to cls-hooked for older Node.js versions",
"maintainers": [
{
"name": "Igor Savin",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json",
"test:coverage": "jest --config=jest.config.json --coverage",
"lint": "eslint \"lib/**/*.ts\" \"test/**/*.ts\"",
"prettier": "prettier --write \"{lib,test}/**/*.{js,ts}\" index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"cls-hooked": "^4.2.2"
},
"devDependencies": {
"@types/cls-hooked": "^4.3.3",
"@types/jest": "^24.9.1",
"@types/node": "^14.17.32",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "24.9.0",
"prettier": "^2.4.1",
"stack-utils": "1.0.5",
"ts-jest": "^24.3.0",
"typescript": "4.4.4"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/kibertoad/asynchronous-local-storage",
"repository": {
"type": "git",
"url": "git://github.com/kibertoad/asynchronous-local-storage.git"
},
"keywords": [
"async-local-storage",
"als",
"cls",
"continuous-local-storage",
"asynchronouslocalstorage",
"threadlocal",
"typescript"
],
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}