forked from Clever/underscore.deep
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
47 lines (43 loc) · 1.06 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
44
45
46
47
Package.describe({
name: 'gfk:underscore-deep',
version: '0.1.0',
summary: '',
git: '[email protected]:gfk-ba/underscore.deep.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
api.use([
'underscore',
'coffeescript'
]);
api.addFiles('underscore.deep.coffee');
api.export('_');
});
Package.onTest(function(api) {
api.use([
'underscore',
'coffeescript',
'gfk:underscore-deep',
'mike:[email protected]',
'practicalmeteor:sinon',
'practicalmeteor:chai']);
api.addFiles([
'test/inspect.js',
'test/helpers.coffee',
'test/deepClone.coffee',
'test/deepDelete.coffee',
'test/deepExtend.coffee',
'test/deepFromFlat.coffee',
'test/deepHas.coffee',
'test/deepKeys.coffee',
'test/deepMapValues.coffee',
'test/deepOmit.coffee',
'test/deepPick.coffee',
'test/deepToFlat.coffee',
'test/isPlainObject.coffee',
'test/mapKeys.coffee',
'test/mapValues.coffee',
'test/deepPickValue.coffee'
]);
});