-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "di-kit",
"version": "1.0.12",
"readme": "README.md",
"description": "Minimal ioc container which allow circular dependency injection",
"private": false,
"scripts": {
"test": "node ./test.mjs"
},
"author": {
"name": "Petr Tripolsky",
"email": "tripolskypetr@gmail.com",
"url": "https://github.com/tripolskypetr"
},
"license": "MIT",
"homepage": "https://github.com/react-declarative",
"keywords": [
"nodejs",
"javascript",
"ioc",
"typescript",
"dependency-injection"
],
"repository": {
"type": "git",
"url": "https://github.com/react-declarative/react-declarative",
"documentation": "https://github.com/react-declarative/react-declarative/tree/master/docs"
},
"bugs": {
"url": "https://github.com/react-declarative/react-declarative/issues"
},
"type": "module",
"types": "index.d.ts",
"module": "index.mjs",
"exports": {
"require": "./index.mjs",
"types": "./index.d.ts",
"import": "./index.mjs",
"default": "./index.mjs"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/react-declarative/react-declarative#license"
}
]
}