-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
43 lines (40 loc) · 1.05 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
Package.describe({
name: 'girassolbit:meteor-kouto-swiss',
version: '0.0.5',
summary: 'A package using Stylus + KoutoSwiss + Jeet + Rupture + Axis + AutoPrefixer + Nib + Typographic',
git: 'https://github.com/girassolbit/meteor-kouto-swiss.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use('logging', ['client', 'server']);
});
Package.registerBuildPlugin({
name: 'compileKoutoSwiss',
use: [],
sources: [
'plugin/compile.js'
],
npmDependencies: {
'stylus': '0.52.0',
'kouto-swiss': '0.11.13',
'nib': '1.1.0',
'autoprefixer-stylus': '0.7.1',
'jeet': '6.1.2',
'rupture': '0.6.1',
'axis': '0.4.2',
'lodash': '3.10.0',
'typographic': '2.9.3'
}
});
Package.onTest(function(api) {
api.use(['tinytest','test-helpers']);
api.use('girassolbit:meteor-kouto-swiss');
api.add_files([
'tests/main.styl',
'tests/relative.import.styl',
'tests/absolute.import.styl',
'tests/koutoswiss.import.styl',
'tests/tinytest.js'
],'client');
});