-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.js
35 lines (26 loc) · 1002 Bytes
/
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
Package.describe({
name:"lepozepo:cloudinary",
summary: "Upload files to Cloudinary",
version:"4.2.7",
git:"https://github.com/Lepozepo/cloudinary"
});
Npm.depends({
cloudinary: "1.9.0",
"cloudinary-jquery": "2.3.0"
});
Package.on_use(function (api){
api.versionsFrom('[email protected]');
// Core Packages
api.use(["[email protected]","coffeescript","mongo","underscore"], ["client", "server"]);
api.use(["templating"], "client");
api.use(["check","random","reactive-var"], ["client","server"]);
// External Packages
api.use(["matb33:[email protected]","audit-argument-checks"], ["client", "server"],{weak:true});
// Cloudinary Client Side
api.add_files(".npm/package/node_modules/cloudinary-jquery/cloudinary-jquery.min.js","client");
// Core Files
api.add_files("server/configuration.coffee", "server");
api.add_files("server/signature.coffee", "server");
api.add_files("client/functions.coffee", "client");
api.export && api.export("Cloudinary",["server","client"]);
});