JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 55
  • Score
    100M100P100Q56373F
  • License MIT

travis cli helper for managing node modules

Package Exports

  • travisjs/bin/travisjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (travisjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

travisjs

Mac / Linux Windows
Build Status Windows Build status

Standard - JavaScript Style Guide

Travisjs is a command line application for travis, especially targeted for managing tests for node modules. It is inspired by travisify and git-travis (which is uses internally).

Install with npm install travisjs -g

Usage: travisjs <command>

command
  version    display the current version
  init       initialize travis (hook and yml)
  badge      generate badge
  open       open travis page
  yml        creates a .travis.yml
  hook       set up hook for this repo
  status     shows the status of the tests
  config     shows the location of the config file
  lint       validate your .travis.yml

config file

Travisjs config file location can be shown with travisjs config.

It can have a couple of properties:

Property Description
token Access token — you don't want to touch this.
node_js Node.js versions to include in generated .travis.yml file.

Example config file:

token: xxx
node_js:
  - '0.10'
  - '0.12'
  - iojs