-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.34 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
{
"name": "@appolo/inject",
"description": "dependency injection for node js",
"keywords": [
"ioc",
"service",
"locator",
"dependency",
"injection",
"di",
"dependency injection",
"dependency injector",
"injection",
"injector",
"container",
"appolo"
],
"author": {
"name": "Roman Svichar",
"email": "[email protected]"
},
"scripts": {
"test": "mocha",
"test-cov": "nyc --reporter=text mocha"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">=2.14.x"
},
"main": "./index.js",
"version": "8.0.20",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shmoop207/appolo-inject"
},
"readme": "",
"readmeFilename": "README.md",
"dependencies": {
"@appolo/events": "^8.0.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/benchmark": "^2.1.2",
"@types/chai": "^4.3.5",
"@types/lodash": "^4.14.194",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.0",
"@types/sinon": "^10.0.14",
"@types/sinon-chai": "^3.2.9",
"benchmark": "^2.1.4",
"chai": "4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"sleep-promise": "^9.1.0",
"typescript": "^4.9.5"
}
}