travis-yaml
v1.0.0
Published
Load your travis yaml configuration into node
Downloads
23
Maintainers
Readme
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.