-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbower.json
More file actions
130 lines (130 loc) · 3.54 KB
/
bower.json
File metadata and controls
130 lines (130 loc) · 3.54 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "famous-commonjs",
"version": "0.2.0",
"homepage": "https://github.com/aelr/famous-commonjs",
"authors": [
"Michael Riley <aelr@outlook.com>"
],
"description": "A port of Famo.us to CommonJS",
"keywords": [
"Famo.us",
"famous",
"CommonJS"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests",
".idea"
],
"main": [
"core/Context.js",
"core/ElementAllocator.js",
"core/Engine.js",
"core/Entity.js",
"core/EventEmitter.js",
"core/EventHandler.js",
"core/Group.js",
"core/Gruntfile.js",
"core/Modifier.js",
"core/OptionsManager.js",
"core/RenderNode.js",
"core/Scene.js",
"core/SpecParser.js",
"core/Surface.js",
"core/Transform.js",
"core/View.js",
"core/ViewSequence.js",
"events/EventArbiter.js",
"events/EventFilter.js",
"events/EventMapper.js",
"events/Gruntfile.js",
"inputs/FastClick.js",
"inputs/GenericSync.js",
"inputs/Gruntfile.js",
"inputs/MouseSync.js",
"inputs/PinchSync.js",
"inputs/RotateSync.js",
"inputs/ScaleSync.js",
"inputs/ScrollSync.js",
"inputs/TouchSync.js",
"inputs/TouchTracker.js",
"inputs/TwoFingerSync.js",
"math/Gruntfile.js",
"math/Matrix.js",
"math/Quaternion.js",
"math/Random.js",
"math/Utilities.js",
"math/Vector.js",
"modifiers/Draggable.js",
"modifiers/Fader.js",
"modifiers/Gruntfile.js",
"modifiers/ModifierChain.js",
"modifiers/StateModifier.js",
"physics/Gruntfile.js",
"physics/PhysicsEngine.js",
"physics/bodies/Body.js",
"physics/bodies/Circle.js",
"physics/bodies/Particle.js",
"physics/bodies/Rectangle.js",
"physics/constraints/Collision.js",
"physics/constraints/Constraint.js",
"physics/constraints/Curve.js",
"physics/constraints/Distance.js",
"physics/constraints/Snap.js",
"physics/constraints/Surface.js",
"physics/constraints/Wall.js",
"physics/constraints/Walls.js",
"physics/forces/Drag.js",
"physics/forces/Force.js",
"physics/forces/Repulsion.js",
"physics/forces/RotationalDrag.js",
"physics/forces/RotationalSpring.js",
"physics/forces/Spring.js",
"physics/forces/VectorField.js",
"physics/integrators/SymplecticEuler.js",
"surfaces/CanvasSurface.js",
"surfaces/ContainerSurface.js",
"surfaces/FormContainerSurface.js",
"surfaces/Gruntfile.js",
"surfaces/ImageSurface.js",
"surfaces/InputSurface.js",
"surfaces/SubmitInputSurface.js",
"surfaces/TextareaSurface.js",
"surfaces/VideoSurface.js",
"transitions/CachedMap.js",
"transitions/Easing.js",
"transitions/Gruntfile.js",
"transitions/MultipleTransition.js",
"transitions/SnapTransition.js",
"transitions/SpringTransition.js",
"transitions/Transitionable.js",
"transitions/TransitionableTransform.js",
"transitions/TweenTransition.js",
"transitions/WallTransition.js",
"utilities/Gruntfile.js",
"utilities/KeyCodes.js",
"utilities/Timer.js",
"utilities/Utility.js",
"views/Deck.js",
"views/EdgeSwapper.js",
"views/Flipper.js",
"views/GridLayout.js",
"views/Gruntfile.js",
"views/HeaderFooterLayout.js",
"views/Lightbox.js",
"views/RenderController.js",
"views/ScrollContainer.js",
"views/Scroller.js",
"views/Scrollview.js",
"views/SequentialLayout.js",
"widgets/Gruntfile.js",
"widgets/NavigationBar.js",
"widgets/Slider.js",
"widgets/TabBar.js",
"widgets/ToggleButton.js"
]
}