2016-03-30 19:08:06 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "nova:forms",
|
|
|
|
summary: "Form containers for React",
|
2016-04-14 10:27:27 +09:00
|
|
|
version: "0.26.0-nova",
|
2016-03-30 19:08:06 +09:00
|
|
|
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.3");
|
|
|
|
|
|
|
|
api.use([
|
|
|
|
'ecmascript',
|
|
|
|
'check',
|
2016-04-15 09:17:04 +09:00
|
|
|
'tmeasday:check-npm-versions@0.3.1',
|
2016-03-30 19:08:06 +09:00
|
|
|
'aldeed:simple-schema@1.5.3',
|
|
|
|
'aldeed:collection2@2.8.0',
|
2016-04-15 15:46:58 +09:00
|
|
|
'utilities:smart-methods@0.1.4'
|
2016-03-30 19:08:06 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.mainModule("lib/export.js", ["client", "server"]);
|
|
|
|
|
|
|
|
});
|