forked from FreezingMoon/AncientBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbower.json
70 lines (70 loc) · 1.36 KB
/
bower.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
65
66
67
68
69
70
{
"name": "ancientbeast",
"description": "Ancient Beast Game",
"main": "deploy/index.html",
"authors": [
"Dread Knight <[email protected]>"
],
"license": "(CC-BY-SA-3.0 OR AGPL-3.0)",
"keywords": [
"game",
"strategy",
"phaser"
],
"homepage": "https://github.com/FreezingMoon/AncientBeast",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"phaser-ce": "~2.7.10",
"jquery": "~1.7.2",
"jquery.transit": "~0.9.12",
"jquery.kinetic": "^1.5.0",
"jquery-mousewheel": "~3.1.13",
"jquery-ui": "~1.11.1",
"socket.io-client": "~1.3.5"
},
"overrides": {
"phaser-ce": {
"main": {
"development": "build/phaser.min.js",
"production": "build/phaser.min.js"
}
},
"jquery": {
"main": {
"development": "./jquery.min.js",
"production": "./jquery.min.js"
}
},
"jquery.kinetic": {
"main": {
"development": "jquery.kinetic.min.js",
"production": "jquery.kinetic.min.js"
}
},
"jquery-mousewheel": {
"main": {
"development": "jquery.mousewheel.min.js",
"production": "jquery.mousewheel.min.js"
}
},
"jquery-ui": {
"main": {
"development": "jquery-ui.min.js",
"production": "jquery-ui.min.js"
}
},
"socket.io-client": {
"main": {
"development": "socket.io.js",
"production": "socket.io.js"
}
}
}
}