We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ade5021 commit 823f615Copy full SHA for 823f615
1 file changed
package.js
@@ -0,0 +1,24 @@
1
+// package metadata file for Meteor.js
2
+var packageName = 'silintzir:angular-validation-match';
3
+var where = 'client';
4
+var version = '1.6.0';
5
+var summary = 'Checks if one input matches another [Brought by TheSharpieOne]';
6
+var gitLink = 'https://github.com/TheSharpieOne/angular-validation-match';
7
+var documentationFile = 'README.md';
8
+
9
+// Meta-data
10
+Package.describe({
11
+ name: packageName,
12
+ version: version,
13
+ summary: summary,
14
+ git: gitLink,
15
+ documentation: documentationFile
16
+});
17
18
+Package.onUse(function(api) {
19
+ api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0']); // Meteor versions
20
21
+ api.use('angular:angular@1.2.0', where); // Dependencies
22
23
+ api.addFiles('dist/angular-validation-match.js', where); // Files in use
24
0 commit comments