-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.js
More file actions
32 lines (27 loc) · 942 Bytes
/
package.js
File metadata and controls
32 lines (27 loc) · 942 Bytes
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
Package.describe({
name: 'izzilab:material-ui',
version: '0.2.6',
// Brief, one-line summary of the package.
summary: 'Material-UI using official React package',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/mrphu3074/react-material-ui.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
var MUI_VERSION = '0.15.4';
var EXTERNALIFY_VERSION = "0.1.0";
Npm.depends({
'externalify': EXTERNALIFY_VERSION,
'material-ui': MUI_VERSION,
'react-tap-event-plugin': '0.2.2'
});
Package.onUse(function(api){
api.use(['react@0.14.3']);
api.use(['cosmos:browserify@0.9.3']);
api.addFiles([
'mui.browserify.options.json',
'mui.browserify.js'
]);
api.export(["MUI", "injectTapEventPlugin"]);
});