forked from Dogfalo/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
30 lines (25 loc) · 977 Bytes
/
package.js
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
// package metadata file for Meteor.js
Package.describe({
name: 'materialize:materialize', // http://atmospherejs.com/materialize/materialize
summary: 'Materialize (official): A modern responsive front-end framework based on Material Design',
version: '0.95.3',
git: 'https://github.com/Dogfalo/materialize.git'
});
Package.onUse(function (api) {
api.versionsFrom('[email protected]');
api.use('jquery', 'client');
api.export('Materialize', 'client');
api.addFiles([
'font/material-design-icons/Material-Design-Icons.eot',
'font/material-design-icons/Material-Design-Icons.svg',
'font/material-design-icons/Material-Design-Icons.ttf',
'font/material-design-icons/Material-Design-Icons.woff',
'font/roboto/Roboto-Bold.ttf',
'font/roboto/Roboto-Light.ttf',
'font/roboto/Roboto-Medium.ttf',
'font/roboto/Roboto-Regular.ttf',
'font/roboto/Roboto-Thin.ttf',
'bin/materialize.css',
'bin/materialize.js',
], 'client');
});