UNPKG

alpaca

Version:

Alpaca provides the easiest and fastest way to generate interactive forms for the web and mobile devices. It runs simply as HTML5 or more elaborately using Bootstrap, jQuery Mobile or jQuery UI. Alpaca uses Handlebars to process JSON schema and provide

41 lines (33 loc) 1.1 kB
// package metadata file for Meteor.js 'use strict'; var packageName = 'summernote:summernote'; // http://atmospherejs.com/summernote:summernote var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing. var packageJson = JSON.parse(Npm.require("fs").readFileSync('package.json')); Package.describe({ name: packageName, summary: 'summernote (official): jQuery+Bootstrap WYSIWYG editor with embedded images support', version: packageJson.version, git: 'https://github.com/summernote/summernote.git' }); Package.onUse(function (api) { api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0']); api.use([ 'jquery', 'twbs:bootstrap@3.3.1' ], where); // no exports - summernote adds itself to jQuery api.addFiles([ 'dist/summernote.js', 'dist/summernote.css' ], where); api.addAssets([ 'dist/font/summernote.eot', 'dist/font/summernote.ttf', 'dist/font/summernote.woff' ], where); }); Package.onTest(function (api) { api.use(packageName, where); api.use('tinytest', where); api.addFiles('meteor/test.js', where); });