-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "com.erkerkiii.gum",
"displayName": "Gum",
"unity": "2019.3",
"version": "1.0.0",
"description": "Gum is a collection of tools focusing mainly on game development with the goal of getting rid of the boilerplate code.",
"main": "Gum.Core",
"scripts": {
"test": "dotnet run --project Tests",
"prepack": "npmignore --auto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erkerkiii/gum.git"
},
"keywords": [
"pooling",
"object pooling",
"web request",
"composition",
"signal",
"observer pattern"
],
"author": "Suleyman Emre Fistikcioglu",
"license": "MIT",
"bugs": {
"url": "https://github.com/erkerkiii/gum/issues"
},
"homepage": "https://github.com/erkerkiii/gum#readme",
"publishConfig": {
"ignore": [
"Resources/",
"Gum.Composer/bin",
"Gum.Composer/obj",
"Gum.Core/bin",
"Gum.Core/obj",
"Gum.Core/.idea",
"Gum.Sandbox",
"Gum.Pooling/bin",
"Gum.Pooling/obj",
"Gum.Signal/obj",
"Gum.Signal/bin",
"Gum.WebRequest/obj",
"Gum.WebRequest/bin",
"Tests/obj",
"Tests/bin",
".idea",
".vs"
]
}
}