This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/library/moment/meteor/package.js
2015-11-18 23:50:42 +01:00

30 lines
743 B
JavaScript

// package metadata file for Meteor.js
'use strict';
var packageName = 'momentjs:moment'; // https://atmospherejs.com/momentjs/moment
var packageJson = JSON.parse(Npm.require("fs").readFileSync('package.json'));
Package.describe({
name: packageName,
summary: 'Moment.js (official): parse, validate, manipulate, and display dates - official Meteor packaging',
version: packageJson.version,
git: 'https://github.com/moment/moment.git'
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0']);
api.export('moment');
api.addFiles([
'moment.js',
'meteor/export.js'
]);
});
Package.onTest(function (api) {
api.use(packageName);
api.use('tinytest');
api.addFiles('meteor/test.js');
});