-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
34 lines (34 loc) · 1.26 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
{
"name": "com.sergeysychov.behaviour_inject",
"displayName": "BInject",
"description": "Behaviour Inject for Unity3d.\nThis is lightweight and easy to use dependency injection tool for Unity3d. There are only few script files with relatively little amount of code. Yet it provides crutial features of reflective dependency injection:\n\n - resolving interfaces;\n - injection to MonoBehaviour properties, fields or methods;\n - class autocomposition with constructor injection;\n - factories;\n - event injection;",
"version": "1.0.8",
"unity": "2018.4",
"license": "MIT",
"documentationUrl": "https://github.com/sergeysychov/behaviour_inject#readme",
"licensesUrl": "https://github.com/sergeysychov/behaviour_inject/blob/master/LICENSE.md",
"repository": {
"type": "git",
"url": "[email protected]:sergeysychov/behaviour_inject.git"
},
"src": "Assets/BInject",
"author": "Sergey Sychov <> (https://github.com/sergeysychov)",
"editorOnly": false,
"upmSupport": true,
"dependencies": {
},
"samples": [
{
"displayName": "Examples",
"path": "Samples~/Examples"
},
{
"displayName": "Tests Scene",
"path": "Samples~/Tests"
},
{
"displayName": "Benchmarks",
"path": "Samples~/Benchmarks"
}
]
}