All Projects → ruyadorno → checkbower

ruyadorno / checkbower

Licence: other
Validates your bower.json files

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to checkbower

Sticky Sidebar
😎 Pure JavaScript tool for making smart and high performance sticky sidebar.
Stars: ✭ 2,057 (+15723.08%)
Mutual labels:  bower
ng-stomp
📑 STOMP for AngularJS
Stars: ✭ 42 (+223.08%)
Mutual labels:  bower
bower-resolve-webpack-plugin
Offers an enhanced bower support for enhanced-resolve plugin.
Stars: ✭ 12 (-7.69%)
Mutual labels:  bower
Micon
Micon, The iconic windows 10 font and CSS toolkit.
Stars: ✭ 182 (+1300%)
Mutual labels:  bower
Asset Packagist
Asset Packagist
Stars: ✭ 235 (+1707.69%)
Mutual labels:  bower
unjector
An injector for ISP injectors
Stars: ✭ 28 (+115.38%)
Mutual labels:  bower
Expertiza
Expertiza is a web application through which students can submit and peer-review learning objects (articles, code, web sites, etc). The Expertiza project is supported by the National Science Foundation.
Stars: ✭ 160 (+1130.77%)
Mutual labels:  bower
project-manager-laravel
Project manager system - PHP and AngularJS
Stars: ✭ 17 (+30.77%)
Mutual labels:  bower
Bower
A package manager for the web
Stars: ✭ 15,095 (+116015.38%)
Mutual labels:  bower
browserify-bower
A browserify plugin, to enable you use bower components just like node modules
Stars: ✭ 20 (+53.85%)
Mutual labels:  bower
Polyserve
Moved to Polymer/tools monorepo
Stars: ✭ 194 (+1392.31%)
Mutual labels:  bower
Bower Components
[DEPRECATED] Site to discover Bower components
Stars: ✭ 220 (+1592.31%)
Mutual labels:  bower
generator-craftskeleton
Starterkit for Craft CMS 2.x (Multi-Environment Configs with HeartyConfig, Gulp, and Bower for Dependencie-Management)
Stars: ✭ 14 (+7.69%)
Mutual labels:  bower
Fabric Brush
Crayon is a canvas brush based on an awesome framework Fabric.js
Stars: ✭ 169 (+1200%)
Mutual labels:  bower
sage-starter
The best starter theme with a modern front-end development workflow. Based on Sage, HTML5 Boilerplate, gulp, Bower, and Bootstrap.
Stars: ✭ 42 (+223.08%)
Mutual labels:  bower
Ignition Go
Bootstrap4 /Codeigniter 3 Modular (HMVC) App Building Framework - to build enterprise class web applications... Versions: CodeIgniter 3.1.9 AdminLTE 3.4 Bootstrap 4.5.0
Stars: ✭ 166 (+1176.92%)
Mutual labels:  bower
sync-pkg
Minimalist CLI to sync only basic properties from package.json to bower.json
Stars: ✭ 15 (+15.38%)
Mutual labels:  bower
q-municate-web
Q-municate Web chat application
Stars: ✭ 66 (+407.69%)
Mutual labels:  bower
godlike.css
CSS for layout standardization and usability of web applications
Stars: ✭ 12 (-7.69%)
Mutual labels:  bower
bower-angular-translate
angular-translate Bower Package
Stars: ✭ 73 (+461.54%)
Mutual labels:  bower

checkbower

v0.2.1

Validates your bower.json file

Build Status Project frozen Project unmaintained

About

checkbower is a small Node.js module to help you verify wether a given bower.json file is valid, containing at the very least a name and a semver valid version number.

It also runs as a small command-line tool to help you verify your bower.json file in a day-to-day basis. Ideal to integrate in a pre-commit hook.

Setup

In order to use it as a command-line tool, install it using npm:

npm install -g checkbower

Usage

The command-line tool can be used to valid the bower.json file of the actual folder simply by running:

checkbower

Or you can also specify a path of a bower.json file to validate:

checkbower ./path/to/bower.json

Programatic usage

The core functionality for bower.json file validation can also be used programatically on any node.js app:

  var checkbower = require('checkbower');

  if (checkbower('path/to/bower.json')) {
    // You have a valid file
  } else {
    // The file is not valid
  }

License

Released under the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].