forked from OPIUM66/ctxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1021 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
{
"name": "the-context-js",
"version": "1.0.8",
"description": "This project demonstrates a simple context management system using JavaScript. It allows you to create contexts, bind values to keys within those contexts, and retrieve those values within a handler function.",
"main": "index.js",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./lib/contextManager.cjs"
}
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/OPIUM66/ctxjs.git"
},
"scripts": {
"debug": "node ./tests/debug.js",
"benchmark": "node ./tests/benchmark.js",
"prepare": "node scripts/build.js"
},
"keywords": ["context-async-hooks" , "async-hooks", "context-manager" , "ctx", "ctxjs", "ctxjs-context-manager", "create-context", "Context Manager", "javascript" , "js", "context" , "javascript context manager", "nodejs", "async", "async hooks" , "context manager async hooks"],
"author": "opium66",
"license": "MIT"
}