-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
44 lines (34 loc) · 776 Bytes
/
package.js
File metadata and controls
44 lines (34 loc) · 776 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
33
34
35
36
37
38
39
40
41
42
43
44
Package.describe({
summary: 'Winston logger for Space.Logger',
name: 'space:winston',
version: '0.1.0',
git: 'https://github.com/meteor-space/winston.git',
documentation: 'README.md'
});
Npm.depends({
"winston": "2.1.0"
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use([
'ecmascript',
'stevezhu:lodash@4.11.1',
'space:base@4.1.4'
]);
api.addFiles([
'source/server/module.js',
'source/server/winston-adapter.js'
], 'server');
});
Package.onTest(function(api) {
api.use([
'ecmascript',
'space:winston',
'practicalmeteor:munit@2.1.5',
'space:testing@3.0.1'
]);
api.add_files([
'tests/unit/winston-adapter.unit.js',
'tests/integration/module.integration.js'
], 'server');
});