1.0.0 • Published 8 years ago

travis-yaml v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Build Status downloads npm Code Climate Test Coverage dependencies

travis-yaml

Load your travis yaml configuration into node

Installation

npm install --save travis-yaml

Summary

This library does what you'd expect: loads your .travis.yml as an object. You can do this synchronously or asynchronously (by passing a callback).

var travisYaml = require('travis-yaml');

// Sync
var travis = travisYaml();

// Async
travisYaml(function(err, travis) {

});

Contributing

Please see the contribution guidelines.