forked from TheSharpieOne/angular-validation-match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
25 lines (21 loc) · 742 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
/*global Package*/
// package metadata file for Meteor.js
var packageName = 'silintzir:angular-validation-match';
var where = 'client';
var version = '1.6.0';
var summary = 'Checks if one input matches another [Brought by TheSharpieOne]';
var gitLink = 'https://github.com/TheSharpieOne/angular-validation-match';
var documentationFile = 'README.md';
// Meta-data
Package.describe({
name: packageName,
version: version,
summary: summary,
git: gitLink,
documentation: documentationFile
});
Package.onUse(function(api) {
api.versionsFrom(['[email protected]', '[email protected]']); // Meteor versions
api.use('angular:[email protected]', where); // Dependencies
api.addFiles('dist/angular-validation-match.js', where); // Files in use
});