-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (111 loc) · 4.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "the-oregon-trajectory",
"version": "2.0.0",
"description": "An old-timey retelling of the mass terrestrial exodus in the 21st century.",
"bugs": {
"url": "https://github.com/7yl4r/the-oregon-trail/issues",
"email": "[email protected]"
},
"contributors": [
"https://github.com/7yl4r/the-oregon-trajectory/graphs/contributors"
],
"repository": {
"type": "git",
"url": "https://github.com/7yl4r/the-oregon-trajectory.git"
},
"dependencies": {
"coffee-script": "~1.4.0",
"less": "~1.7.5",
"browserify": "~9.0.3",
"browserify-shim": "~3.8.3",
"angular": "~1.3.14",
"fastclick": "~0.6.7",
"angular-bootstrap": "~0.12.0",
"angular-touch": "~1.3.14",
"coffeeify": "~1.0.0",
"jquery": "~2.1.3",
"phaser": "~2.6.2",
"rollupify": "~0.3.6"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"fastclick": {
"exports": "FastClick"
},
"angular": {
"exports": "angular"
},
"ui.bootstrap": {
"depends": "angular",
"exports": "angular.module('ui.bootstrap').name"
},
"ngTouch": {
"depends": "angular",
"exports": "angular.module('ngTouch').name"
},
"typeWriter": {
"depends": "angular",
"exports": "typeWriter"
},
"howler": {
"exports": "Howl"
},
"phaser": {
"exports": "Phaser"
},
"slick-ui": {
"exports": "SlickUI"
}
},
"browser": {
"game": "./game.coffee",
"pause": "./gameActions/pause.js",
"pause-button": "./gameUI/addPauseButton.js",
"status-display": "./gameUI/statusDisplay/addStatusDisplay.js",
"main-menu-controller": "./gameUI/mainMenu.js",
"si-number-formatter": "./gameUtils/SINumberFormatter.js",
"drift": "./gameUtils/drift.js",
"load-spritesheet": "./gameUtils/loadSpriteSpec.js",
"EventList": "./gameData/EventList.js",
"gameEvents": "./gameEvents.js",
"slick-ui": "./lib/slick-ui/dist/slick-ui.min.js",
"slick-ui-preload": "./gamePlugins/slickUI.js",
"welcome": "./ng-modules/welcome/welcome.js",
"ship-customizer": "./ng-modules/shipCustomizer/shipCustomizer.coffee",
"leaderboard": "./ng-modules/leaderboard/leaderboard.js",
"learn-about-trajectory": "./ng-modules/situation/learnAboutTrajectory.coffee",
"asteroid-mining": "./ng-modules/asteroidMining/asteroidMining.js",
"mining-dialog-start": "./ng-modules/asteroidMining/dialogStart.js",
"mining-dialog-finish": "./ng-modules/asteroidMining/dialogFinish.js",
"situation": "./ng-modules/situation/situation.js",
"trader": "./ng-modules/trader/trader.coffee",
"example-module": "./ng-modules/exampleModule/exampleModule.js",
"game-btn": "./ng-modules/gameBtn/gameBtn.js",
"debris-encounter": "./ng-modules/debrisEncounter/debrisEncounter.coffee",
"audio-controls": "./ng-modules/audioControls/audioControls.js",
"maneuver-screen": "./ng-modules/maneuverScreen/maneuverScreen.js",
"game-over": "./ng-modules/gameOver/gameOver.js",
"travel-screen": "./ng-modules/travelScreen/travelScreen.coffee",
"header-navbar": "./ng-modules/navHeader/navHeader.js",
"splash-header": "./ng-modules/splashHeader/splashHeader.js",
"app-footer": "./ng-modules/appFooter/appFooter.coffee",
"social-button-directive": "./ng-modules/socialButtons/socialButtons.js",
"main-menu": "./ng-modules/mainMenu/mainMenu.js",
"shop": "./ng-modules/shop/shop.js",
"you-win": "./ng-modules/youWin/youWin.js",
"score": "./ng-modules/score.js",
"nodule": "./ng-modules/theOregonTrajectory/Nodule.coffee",
"ng-hold": "./ng-modules/ngHold.js",
"angular": "./node_modules/angular/angular.min.js",
"ui.bootstrap": "./node_modules/angular-bootstrap/ui-bootstrap.min.js",
"ngTouch": "./node_modules/angular-touch/angular-touch.min.js",
"fastclick": "./node_modules/fastclick/build/fastclick.min.js",
"phaser": "./node_modules/phaser/build/custom/phaser-arcade-physics.min.js",
"howler": "./lib/howler.min.js",
"typeWriter": "./lib/typewriter.js"
}
}