Socialify

Folder ..

Viewing package.js
34 lines (27 loc) • 733.0 B

 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
/* eslint-disable no-undef */
Npm.depends({
  faker: "3.0.1",
});

Package.describe({
  summary:
    "Generate massive amounts of fake data in node.js and in the browser.",
  name: "practicalmeteor:faker",
  version: "3.0.1_1",
  git: "https://github.com/practicalmeteor/meteor-faker.git",
  documentation: "Readme.md",
});

Package.onUse(function (api) {
  api.versionsFrom("1.0");

  api.addFiles("meteor/npm-require.js", "server");

  api.addFiles("build/build/blaver.js", "client");

  api.export("blaver", "server");
});

Package.onTest(function (api) {
  api.use([
    "practicalmeteor:faker",
    "coffeescript",
    "tinytest",
    "practicalmeteor:chai",
  ]);

  api.addFiles("meteor/tests/blaver-export-test.coffee");
});