-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "nctx",
"version": "2.3.1",
"description": "NodeJS Contextual Dependency Injection using native async_hooks - IoC",
"main": "src/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://codeberg.org/devthefuture/nctx.git"
},
"keywords": [
"nctx",
"ioc",
"di",
"dependency-injection",
"inversion-of-control",
"async_hooks"
],
"scripts": {
"lint": "eslint src",
"lint:fix": "yarn lint --cache --fix",
"test": "node --test",
"dev": "node --test --watch .",
"example:js": "node examples/commonjs-usage.js",
"example:ts": "ts-node examples/typescript-usage.ts",
"check-types": "tsc --noEmit --project examples/tsconfig.json"
},
"author": "devthejo",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/devthefuture/nctx/issues"
},
"homepage": "https://codeberg.org/devthefuture/nctx#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^7.32.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"lodash": "^4.17.21"
},
"packageManager": "yarn@4.8.1"
}