-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.96 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
63
64
65
66
67
68
69
{
"name": "alscontext",
"version": "0.0.3",
"description": "Continuation-local storage using Node.js AsyncLocalStorage with fallback to modified cls-hooked",
"maintainers": [
{
"name": "Phakorn Kiong",
"email": "[email protected]"
}
],
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"watch": "tsc --watch",
"test": "npm run build && jest --config=jest.config.js",
"cover": "npm run build && jest --config=jest.config.js --coverage",
"test:cls": "npm run build && jest --config=src/cls/jest.config.js",
"test:clscover": "npm run build && jest --config=src/cls/jest.config.js --coverage",
"devtest": "jest --config=jest.config.js",
"prepublishOnly": "npm run build",
"bench": "node benchmark/cls-hooked.run.js && node benchmark/cls.run.js && node benchmark/als.run.js"
},
"engines": {
"node": ">=8.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Darkripper214/ALS-Context.git"
},
"author": "Phakorn Kiong",
"license": "ISC",
"bugs": {
"url": "https://github.com/Darkripper214/ALS-Context/issues"
},
"homepage": "https://github.com/Darkripper214/ALS-Context#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"cls-hooked": "^4.2.2",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-prettier": "^3.3.1",
"jest": "25.5.4",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "4.2.3"
},
"keywords": [
"als",
"cls",
"async-local-storage",
"continuous-local-storage",
"asynchronouslocalstorage",
"threadlocal",
"context",
"typescript",
"express-context"
],
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}