mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
16 lines
471 B
JavaScript
16 lines
471 B
JavaScript
// ==========================================
|
|
// BOWER: Public API Definition
|
|
// ==========================================
|
|
// Copyright 2012 Twitter, Inc
|
|
// Licensed under The MIT License
|
|
// http://opensource.org/licenses/MIT
|
|
// ==========================================
|
|
|
|
var abbrev = require('abbrev');
|
|
var commands = require('./commands');
|
|
|
|
module.exports = {
|
|
commands: commands,
|
|
abbreviations: abbrev(Object.keys(commands)),
|
|
config: require('./core/config')
|
|
}; |