-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "nctx",
"version": "2.2.0",
"description": "NodeJS Contextual Dependency Injection using native async_hooks - IoC",
"main": "src/index.js",
"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 ."
},
"author": "devthejo",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/devthefuture/nctx/issues"
},
"homepage": "https://codeberg.org/devthefuture/nctx#readme",
"devDependencies": {
"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"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"lodash": "^4.17.21"
}
}