Skip to content
Snippets Groups Projects
resources.js 2.74 KiB
Newer Older
Thomas Rientjes's avatar
Thomas Rientjes committed
/**
 * Resources
 * Belongs to Decentraleyes.
 *
 * @author      Thomas Rientjes
 * @since       2014-05-30
 * @license     MPL 2.0
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/.
 */

'use strict';

/**
 * Resources
 */

var resources = {

    // AngularJS
    angular: {
        path: 'resources/angularjs/{version}/angular.min.js.dec',
        type: 'application/javascript'
    },
    // Backbone.js
    backbone: {
        path: 'resources/backbone.js/{version}/backbone-min.js.dec',
        type: 'application/javascript'
    },
    // Dojo
    dojo: {
        path: 'resources/dojo/{version}/dojo/dojo.js.dec',
        type: 'application/javascript'
    },
    // Ember.js
    ember: {
        path: 'resources/ember.js/{version}/ember.min.js.dec',
        type: 'application/javascript'
    },
    // Ext Core
    extCore: {
        path: 'resources/ext-core/{version}/ext-core.js.dec',
        type: 'application/javascript'
    },
    // jQuery
    jQuery: {
        path: 'resources/jquery/{version}/jquery.min.js.dec',
        type: 'application/javascript'
    },
    // jQuery UI
    jQueryUI: {
        path: 'resources/jqueryui/{version}/jquery-ui.min.js.dec',
        type: 'application/javascript'
    },
    // Modernizr
    modernizr: {
        path: 'resources/modernizr/{version}/modernizr.min.js.dec',
        type: 'application/javascript'
    },
    // MooTools
    mootools: {
        path: 'resources/mootools/{version}/mootools-yui-compressed.js.dec',
        type: 'application/javascript'
    },
    // Prototype
    prototypeJS: {
        path: 'resources/prototype/{version}/prototype.js.dec',
        type: 'application/javascript'
    },
    // Scriptaculous
    scriptaculous: {
        path: 'resources/scriptaculous/{version}/scriptaculous.js.dec',
        type: 'application/javascript'
    },
    // SWFObject
    swfobject: {
        path: 'resources/swfobject/{version}/swfobject.js.dec',
        type: 'application/javascript'
    },
    // Underscore.js
    underscore: {
        path: 'resources/underscore.js/{version}/underscore-min.js.dec',
        type: 'application/javascript'
    },
    // Web Font Loader
    webfont: {
        path: 'resources/webfont/{version}/webfont.js.dec',
        type: 'application/javascript'
    },
    // Miscellaneous
    yahooDOMEvent: {
        path: 'resources/yui/{version}/build/yahoo-dom-event/yahoo-dom-event.js.dec',
        type: 'application/javascript'
    },
    yahooConnection: {
        path: 'resources/yui/{version}/build/connection/connection-min.js.dec',
        type: 'application/javascript'
    }
Thomas Rientjes's avatar
Thomas Rientjes committed
};

/**
 * Exports
 */

module.exports = resources;