You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
328 B
13 lines
328 B
2 years ago
|
Package.describe({
|
||
|
name: 'faisalman:ua-parser-js',
|
||
|
version: '1.0.2',
|
||
|
summary: 'Lightweight JavaScript-based user-agent string parser',
|
||
|
git: 'https://github.com/faisalman/ua-parser-js.git',
|
||
|
documentation: 'readme.md'
|
||
|
});
|
||
|
|
||
|
Package.onUse(function (api) {
|
||
|
api.addFiles("src/ua-parser.js");
|
||
|
api.export("UAParser");
|
||
|
});
|