index.js 487 B

123456789101112131415161718
  1. 'use strict'
  2. const constants = require('./constants')
  3. const Server = require('./server')
  4. const runner = require('./runner')
  5. const stopper = require('./stopper')
  6. const launcher = require('./launcher')
  7. const cfg = require('./config')
  8. module.exports = {
  9. constants: constants,
  10. VERSION: constants.VERSION,
  11. Server: Server,
  12. runner: runner,
  13. stopper: stopper,
  14. launcher: launcher,
  15. config: { parseConfig: cfg.parseConfig } // lets start with only opening up the `parseConfig` api
  16. }