0.1.3 • Published 10 years ago

bower-list v0.1.3

Weekly downloads
41
License
MIT
Repository
github
Last release
10 years ago

bower-list

NPM version Dependency Status

Requests a list of bower packages with json-requester

Install

$ npm install --save bower-list

Usage

var bowerList = require('bower-list');

var options = {
  filter: ['name', 'website']
};
bowerList(options, function(err, data) {
  if (err) {
    throw err;
  }

  console.log(data);
  // => [ { name: '10digit-validation', website: 'https://github.com/10digit/validation' },
  //   { name: '1140px-responsive-css-grid', website: 'https://github.com/aosmialowski/1140px-Responsive-CSS-Grid' },
  //   { name: '15puzzle', website: 'https://github.com/rupertqin/15puzzle' }
  // ]
});

License

Copyright (c) 2014 Stefan Buck. Licensed under the MIT license.

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.0

10 years ago