alasql
Version:
AlaSQL.js - JavaScript SQL database library for relational and graph data manipulation with support of localStorage, IndexedDB, and Excel
25 lines (22 loc) • 763 B
JavaScript
Package.describe({
name: 'agershun:alasql',
version: '0.1.5',
// Brief, one-line summary of the package.
summary: 'AlaSQL.js - JavaScript SQL database library',
// URL to the Git repository containing the source code for this package.
git: 'http://github.com/agershun/alasql.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
// api.use('alasql', ['client', 'server']);
api.export('alasql');
api.addFiles('alasql.min.js');
});
Package.onTest(function(api) {
// api.use('tinytest');
// api.use('agershun:alasql');
// api.addFiles('alasql-tests.js');
});