forked from poetic/react-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
37 lines (32 loc) · 1.03 KB
/
package.js
File metadata and controls
37 lines (32 loc) · 1.03 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
Package.describe({
name: 'poetic:react-material-ui',
version: '0.0.3',
// Brief, one-line summary of the package.
summary: 'Everything you need to use material ui inside your Meteor application.',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/poetic/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'
});
Npm.depends({
'externalify': '0.1.0',
'material-ui': '0.10.1',
'react-tap-event-plugin': '0.1.7'
});
Package.onUse(function(api) {
api.use([
'react@0.1.7',
'cosmos:browserify@0.5.0'
], 'client');
api.addFiles([
'react-material-ui.browserify.options.json',
'react-material-ui.browserify.js'
], 'client');
api.export(['mui', 'injectTapEventPlugin'], 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('poetic:react-material-ui');
api.addFiles('react-material-ui-tests.js');
});