forked from ManuelDeLeon/viewmodel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
20 lines (19 loc) · 701 Bytes
/
package.js
File metadata and controls
20 lines (19 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Package.describe({
name: 'manuel:viewmodel',
summary: "MVVM, two-way data binding, and components for Meteor. Similar to Angular and Knockout.",
version: "1.9.12",
git: "https://github.com/ManuelDeLeon/viewmodel"
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@1.0.4');
api.use('coffeescript');
api.use('blaze', 'client');
api.use('manuel:reactivearray@1.0.5');
api.use('manuel:isdev@1.0.0');
api.addFiles('helper.coffee', 'client');
api.addFiles('monkeypatch.js', 'client');
api.addFiles('viewmodel.coffee', 'client');
api.addFiles('hooks.coffee', 'client');
api.addFiles('binds.coffee', 'client');
api.export('ViewModel', 'client');
});