mirror of
https://github.com/meteor/meteor.git
synced 2026-01-11 08:38:01 -05:00
25 lines
390 B
JavaScript
25 lines
390 B
JavaScript
Package.describe({
|
|
summary: "Tiny testing framework",
|
|
version: '1.3.2',
|
|
});
|
|
|
|
Npm.depends({
|
|
"lodash.isequal": "4.5.0"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use([
|
|
'ecmascript',
|
|
'ejson',
|
|
'random',
|
|
'ddp',
|
|
'mongo',
|
|
'check'
|
|
]);
|
|
|
|
api.mainModule('tinytest_client.js', 'client');
|
|
api.mainModule('tinytest_server.js', 'server');
|
|
|
|
api.export('Tinytest');
|
|
});
|