systemjs / builder

SystemJS build tool
MIT License
465 stars 122 forks source link

Internal Error: Not enough space #619

Closed StefanRKarlsson closed 8 years ago

StefanRKarlsson commented 8 years ago

When i am trying to build my application with the help of Jenkins i am getting a build error on that server that says Not enough space.

Locally it works great.

Is this error message telling me that the DISK space is full or MEMORY?

Because none of the above is correct, memory is at 63% when running build and disk has > 50 gb left.

Is there a setting i am missing?

Here is my build script:

module.exports = (gulp, config) => () => {
    const path = require('path');
    const Builder = require('jspm').Builder;
    const builder = new Builder();
    const packageJson = require(path.join(config.projectDir, 'package.json'));

    return beginBuild()
      .then(buildSFX)
      .catch((err) => {
          console.log('\n\tBuild Failed\n', err);
          process.exit(1);
      });

    function beginBuild() {
        builder.reset();
        return builder.loadConfig(path.join(config.projectDir, packageJson.jspm.configFile));
    }

    function buildSFX() {
        const appName = packageJson.name;
        const distFileName = `${appName}.min.js`;
        const outFile = path.join(config.distDir, distFileName);
        const moduleName = 'app-module';
        const buildConfig = {
            format: 'amd',
            minify: true,
            sourceMaps: false,
            mangle: true,

        };
        return builder.buildStatic(moduleName, outFile, buildConfig);
    }

};

Packages.conf:

{
  "name": "xxx",
  "description": "xxx",
  "repository": {
    "type": "git",
    "url": "https://github.com/xxx"
  },
  "private": true,
  "version": "0.3.0",
  "dependencies": {},
  "devDependencies": {
    "browser-sync": "~2.12.8",
    "chai": "~3.5.0",
    "del": "~2.2.0",
    "eslint": "~2.10.2",
    "gulp": "~3.9.1",
    "gulp-directive-replace": "git+https://github.com/b091/gulp-directive-replace.git",
    "gulp-eslint": "~2.0.0",
    "gulp-ng-annotate": "~2.0.0",
    "gulp-ng-config": "~1.3.1",
    "gulp-protractor": "~2.3.0",
    "gulp-rename": "^1.2.2",
    "gulp-tslint": "~5.0.0",
    "gulp-typedoc": "~2.0.0",
    "gulp-util": "^3.0.7",
    "jspm": "~0.16.34",
    "karma": "~0.13.22",
    "karma-chai-sinon": "~0.1.5",
    "karma-coverage": "~1.0.0",
    "karma-jspm": "~2.1.1",
    "karma-junit-reporter": "~1.0.0",
    "karma-mocha": "~1.0.1",
    "karma-mocha-reporter": "~2.0.3",
    "karma-phantomjs-launcher": "~1.0.0",
    "karma-scss-preprocessor": "^2.0.0",
    "minimist": "~1.2.0",
    "mocha": "~2.5.3",
    "node-sass": "^3.7.0",
    "phantomjs-prebuilt": "~2.1.7",
    "portfinder": "~1.0.3",
    "protractor": "~3.3.0",
    "run-sequence": "~1.2.1",
    "sinon": "~1.17.4",
    "sinon-chai": "~2.8.0",
    "tslint": "~3.10.2",
    "typescript": "~1.8.10",
    "typings": "~1.0.4"
  },
  "engines": {
    "node": ">=5.6.0"
  },
  "scripts": {
    "deepCache": "jspm depcache src/index-module.js",
    "gulp": "gulp",
    "check": "gulp check",
    "build": "gulp build:dist",
    "test": "gulp test",
    "postinstall": "jspm install && typings install && webdriver-manager update"
  },
  "jspm": {
    "directories": {
      "packages": "vendor/jspm_packages"
    },
    "configFile": "jspm.conf.js",
    "dependencies": {
      "angular": "github:angular/bower-angular@^1.5.5",
      "angular-breadcrumb": "github:ncuillery/angular-breadcrumb@^0.4.1",
      "angular-toastr": "github:Foxandxss/angular-toastr@^1.7.0",
      "angular-ui-router": "github:angular-ui/ui-router@^0.2.18",
      "animate": "github:daneden/animate.css@^3.5.1",
      "babel-core": "npm:babel-core@^6.8.0",
      "bootstrap": "github:twbs/bootstrap@^3.3.6",
      "font-awesome": "npm:font-awesome@^4.6.1",
      "highcharts": "github:highcharts/highcharts-dist@^4.2.5",
      "highcharts-ng": "github:pablojim/highcharts-ng@^0.0.11",
      "highcharts/export-csv": "github:highcharts/export-csv@master",
      "jquery": "npm:jquery@^2.2.0",
      "jquery-slimscroll": "github:rochal/jQuery-slimScroll@^1.3.7",
      "jquery-ui": "github:components/jqueryui@^1.11.4",
      "metismenu": "github:onokumus/metisMenu@^2.5.2",
      "moment": "github:moment/moment@^2.13.0",
      "pace": "github:HubSpot/pace@^1.0.2"
    },
    "devDependencies": {
      "angular-mocks": "github:angular/bower-angular-mocks@^1.5.5",
      "babel": "npm:babel-core@^5.8.24",
      "babel-runtime": "npm:babel-runtime@^5.8.24",
      "clean-css": "npm:clean-css@^3.4.12",
      "core-js": "npm:core-js@^2.4.0",
      "css": "github:systemjs/plugin-css@^0.1.21",
      "image": "github:systemjs/plugin-image@^0.1.0",
      "scss": "github:mobilexag/plugin-sass@^0.3.0",
      "text": "github:systemjs/plugin-text@^0.0.8",
      "ts": "github:frankwallis/plugin-typescript@^4.0.5",
      "typescript": "npm:typescript@^1.8.2",
      "webfont": "github:components/webfontloader@^1.6.3"
    },
    "overrides": {
      "github:highcharts/highcharts-dist@4.2.5": {
        "main": "highcharts",
        "shim": {
          "highcharts": {
            "deps": [
              "./adapters/standalone-framework"
            ],
            "exports": "Highcharts"
          }
        }
      },
      "github:rochal/jQuery-slimScroll@1.3.7": {
        "main": "jquery.slimscroll.js",
        "files": [
          "/jquery.slimscroll.js"
        ],
        "dependencies": {
          "jquery": "npm:jquery@^2.2.0"
        }
      }
    }
  }
}

Jspm conf:

System.config({
  defaultJSExtensions: true,
  transpiler: "typescript",
  typescriptOptions: {
    "tsconfig": "src/tsconfig.json"
  },
  paths: {
    "github:*": "vendor/jspm_packages/github/*",
    "npm:*": "vendor/jspm_packages/npm/*",
    "app-module/*": "src/*"
  },

  packages: {
    "app-module": {
      "main": "index-module",
      "format": "amd",
      "defaultExtension": "js"
    }
  },

  meta: {
    "vendor/jspm_packages/github/pablojim/highcharts-ng@0.0.11/dist/highcharts-ng.js": {
      "globals": {
        "Highcharts": "github:highcharts/highcharts-dist@4.2.5"
      }
    },
    "*.scss": {
      "loader": "scss"
    },
    "*.css": {
      "loader": "css"
    },
    "*.html": {
      "loader": "text"
    },
    "*.{png,jpg,gif}": {
      "loader": "image"
    }
  },

  depCache: {
    "app-module/index-module.js": [
      "./app-module",
      "./appSettings",
      "./modules/navigation/navigation-module",
      "./modules/footer/footer-module",
      "./modules/order/order-module",
      "./modules/member/member-module",
      "./modules/product/product-module",
      "./modules/support/support-module",
      "./modules/server/server-module",
      "./modules/chart/chart-module",
      "./modules/ibox/ibox-module",
      "./modules/breadcrumb/breadcrumb-module",
      "./modules/layout/layout-setting",
      "./shared/services/service-module",
      "./shared/directives/directive-module",
      "./modules/toastr/toast",
      "./assets/styles/style.scss!"
    ],
    "app-module/modules/navigation/navigation-module.js": [
      "../../app-module",
      "./main-navigation-directive",
      "./top-navbar-directive",
      "./minimalize-sidebar-directive",
      "./side-navigation-directive",
      "metismenu"
    ],
    "app-module/modules/footer/footer-module.js": [
      "../../app-module",
      "./main-footer-directive"
    ],
    "app-module/modules/order/order-module.js": [
      "../../app-module",
      "../chart/chart-module",
      "./order-dashboard-controller"
    ],
    "app-module/modules/member/member-module.js": [
      "../../app-module",
      "./member-dashboard-controller",
      "./member-classification-controller",
      "../chart/chart-module"
    ],
    "app-module/modules/product/product-module.js": [
      "../../app-module",
      "./product-dashboard-controller"
    ],
    "app-module/modules/support/support-module.js": [
      "../../app-module",
      "./support-dashboard-controller"
    ],
    "app-module/modules/server/server-module.js": [
      "../../app-module",
      "./server-dashboard-controller"
    ],
    "app-module/modules/ibox/ibox-module.js": [
      "../../app-module",
      "./ibox-tools-directive"
    ],
    "app-module/modules/chart/chart-module.js": [
      "../../app-module",
      "./orderchart-service",
      "./memberchart-service",
      "highcharts-ng"
    ],
    "app-module/app-module.js": [
      "angular",
      "./app-config",
      "jquery",
      "jquery-ui",
      "jquery-slimscroll",
      "moment",
      "bootstrap",
      "angular-ui-router",
      "bootstrap/css/bootstrap.css!",
      "font-awesome",
      "animate",
      "pace"
    ],
    "app-module/modules/breadcrumb/breadcrumb-module.js": [
      "../../app-module",
      "./configs/config-breadcrumb",
      "angular-breadcrumb"
    ],
    "app-module/shared/services/service-module.js": [
      "../../app-module",
      "./endpoint-service",
      "../models/entity-model",
      "../../modules/order/entities/order-count",
      "./crud-service"
    ],
    "app-module/shared/directives/directive-module.js": [
      "../../app-module",
      "./page-title/page-title-directive",
      "./content-title/content-title-directive",
      "./loadingState/loading-state-directive"
    ],
    "app-module/modules/toastr/toast.js": [
      "../../app-module",
      "angular-toastr",
      "angular-toastr/angular-toastr.css!"
    ],
    "github:onokumus/metisMenu@2.5.2.js": [
      "github:onokumus/metisMenu@2.5.2/dist/metisMenu"
    ],
    "github:angular/bower-angular@1.5.5.js": [
      "github:angular/bower-angular@1.5.5/angular"
    ],
    "github:moment/moment@2.13.0.js": [
      "github:moment/moment@2.13.0/moment"
    ],
    "github:ncuillery/angular-breadcrumb@0.4.1.js": [
      "github:ncuillery/angular-breadcrumb@0.4.1/release/angular-breadcrumb.js"
    ],
    "github:pablojim/highcharts-ng@0.0.11.js": [
      "github:pablojim/highcharts-ng@0.0.11/dist/highcharts-ng.js"
    ],
    "github:rochal/jQuery-slimScroll@1.3.7.js": [
      "github:rochal/jQuery-slimScroll@1.3.7/jquery.slimscroll.js"
    ],
    "github:twbs/bootstrap@3.3.6.js": [
      "github:twbs/bootstrap@3.3.6/js/bootstrap"
    ],
    "github:angular-ui/ui-router@0.2.18.js": [
      "github:angular-ui/ui-router@0.2.18/angular-ui-router"
    ],
    "github:daneden/animate.css@3.5.1.js": [
      "github:daneden/animate.css@3.5.1/animate.css!"
    ],
    "npm:font-awesome@4.6.1.js": [
      "npm:font-awesome@4.6.1/css/font-awesome.css!"
    ],
    "app-module/modules/navigation/main-navigation-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/navigation/minimalize-sidebar-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/navigation/top-navbar-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/navigation/side-navigation-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/footer/main-footer-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/ibox/ibox-tools-directive.js": [
      "../../shared/decorators/directive-decorator"
    ],
    "app-module/modules/chart/orderchart-service.js": [
      "./configs/chart-config",
      "highcharts"
    ],
    "app-module/modules/chart/memberchart-service.js": [
      "./configs/chart-config",
      "highcharts"
    ],
    "npm:jquery@2.2.3.js": [
      "npm:jquery@2.2.3/dist/jquery.js"
    ],
    "github:HubSpot/pace@1.0.2.js": [
      "github:HubSpot/pace@1.0.2/pace.js"
    ],
    "app-module/modules/order/entities/order-count.js": [
      "../../../shared/models/entity-model"
    ],
    "github:components/jqueryui@1.11.4.js": [
      "github:components/jqueryui@1.11.4/jquery-ui.js"
    ],
    "github:Foxandxss/angular-toastr@1.7.0.js": [
      "github:Foxandxss/angular-toastr@1.7.0/angular-toastr"
    ],
    "app-module/shared/directives/page-title/page-title-directive.js": [
      "../../decorators/directive-decorator"
    ],
    "app-module/shared/directives/content-title/content-title-directive.js": [
      "../../decorators/directive-decorator"
    ],
    "app-module/shared/directives/loadingState/loading-state-directive.js": [
      "../../decorators/directive-decorator"
    ],
    "github:onokumus/metisMenu@2.5.2/dist/metisMenu.js": [
      "jquery"
    ],
    "github:pablojim/highcharts-ng@0.0.11/dist/highcharts-ng.js": [
      "github:highcharts/highcharts-dist@4.2.5"
    ],
    "github:twbs/bootstrap@3.3.6/js/bootstrap.js": [
      "jquery"
    ],
    "github:angular-ui/ui-router@0.2.18/angular-ui-router.js": [
      "angular"
    ],
    "github:highcharts/highcharts-dist@4.2.5.js": [
      "github:highcharts/highcharts-dist@4.2.5/highcharts"
    ],
    "github:Foxandxss/angular-toastr@1.7.0/angular-toastr.js": [
      "angular",
      "./angular-toastr.css!"
    ],
    "github:HubSpot/pace@1.0.2/pace.js": [
      "pace"
    ],
    "github:components/jqueryui@1.11.4/jquery-ui.js": [
      "jquery"
    ],
    "github:highcharts/highcharts-dist@4.2.5/highcharts.js": [
      "./adapters/standalone-framework"
    ]
  },

  map: {
    "angular": "github:angular/bower-angular@1.5.5",
    "angular-breadcrumb": "github:ncuillery/angular-breadcrumb@0.4.1",
    "angular-mocks": "github:angular/bower-angular-mocks@1.5.5",
    "angular-toastr": "github:Foxandxss/angular-toastr@1.7.0",
    "angular-ui-router": "github:angular-ui/ui-router@0.2.18",
    "animate": "github:daneden/animate.css@3.5.1",
    "babel": "npm:babel-core@5.8.38",
    "babel-core": "npm:babel-core@6.8.0",
    "babel-runtime": "npm:babel-runtime@5.8.38",
    "bootstrap": "github:twbs/bootstrap@3.3.6",
    "clean-css": "npm:clean-css@3.4.12",
    "core-js": "npm:core-js@2.4.0",
    "css": "github:systemjs/plugin-css@0.1.21",
    "font-awesome": "npm:font-awesome@4.6.1",
    "highcharts": "github:highcharts/highcharts-dist@4.2.5",
    "highcharts-ng": "github:pablojim/highcharts-ng@0.0.11",
    "highcharts/export-csv": "github:highcharts/export-csv@master",
    "image": "github:systemjs/plugin-image@0.1.0",
    "jquery": "npm:jquery@2.2.3",
    "jquery-slimscroll": "github:rochal/jQuery-slimScroll@1.3.7",
    "jquery-ui": "github:components/jqueryui@1.11.4",
    "metismenu": "github:onokumus/metisMenu@2.5.2",
    "moment": "github:moment/moment@2.13.0",
    "pace": "github:HubSpot/pace@1.0.2",
    "scss": "github:mobilexag/plugin-sass@0.3.1",
    "text": "github:systemjs/plugin-text@0.0.8",
    "toast-progressbar": "src/modules/toastr/views/progressbar.html",
    "toast-template": "src/modules/toastr/views/toastr.html",
    "ts": "github:frankwallis/plugin-typescript@4.0.9",
    "typescript": "npm:typescript@1.8.10",
    "webfont": "github:components/webfontloader@1.6.3",
    "github:Foxandxss/angular-toastr@1.7.0": {
      "angular": "github:angular/bower-angular@1.5.5",
      "css": "github:systemjs/plugin-css@0.1.21"
    },
    "github:angular-ui/ui-router@0.2.18": {
      "angular": "github:angular/bower-angular@1.5.5"
    },
    "github:angular/bower-angular-mocks@1.5.5": {
      "angular": "github:angular/bower-angular@1.5.5"
    },
    "github:components/jqueryui@1.11.4": {
      "jquery": "npm:jquery@2.2.3"
    },
    "github:frankwallis/plugin-typescript@4.0.9": {
      "typescript": "npm:typescript@1.8.10"
    },
    "github:jspm/nodelibs-assert@0.1.0": {
      "assert": "npm:assert@1.3.0"
    },
    "github:jspm/nodelibs-buffer@0.1.0": {
      "buffer": "npm:buffer@3.6.0"
    },
    "github:jspm/nodelibs-constants@0.1.0": {
      "constants-browserify": "npm:constants-browserify@0.0.1"
    },
    "github:jspm/nodelibs-crypto@0.1.0": {
      "crypto-browserify": "npm:crypto-browserify@3.11.0"
    },
    "github:jspm/nodelibs-events@0.1.1": {
      "events": "npm:events@1.0.2"
    },
    "github:jspm/nodelibs-http@1.7.1": {
      "Base64": "npm:Base64@0.2.1",
      "events": "github:jspm/nodelibs-events@0.1.1",
      "inherits": "npm:inherits@2.0.1",
      "stream": "github:jspm/nodelibs-stream@0.1.0",
      "url": "github:jspm/nodelibs-url@0.1.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "github:jspm/nodelibs-https@0.1.0": {
      "https-browserify": "npm:https-browserify@0.0.0"
    },
    "github:jspm/nodelibs-net@0.1.2": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "http": "github:jspm/nodelibs-http@1.7.1",
      "net": "github:jspm/nodelibs-net@0.1.2",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "stream": "github:jspm/nodelibs-stream@0.1.0",
      "timers": "github:jspm/nodelibs-timers@0.1.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "github:jspm/nodelibs-os@0.1.0": {
      "os-browserify": "npm:os-browserify@0.1.2"
    },
    "github:jspm/nodelibs-path@0.1.0": {
      "path-browserify": "npm:path-browserify@0.0.0"
    },
    "github:jspm/nodelibs-process@0.1.2": {
      "process": "npm:process@0.11.3"
    },
    "github:jspm/nodelibs-querystring@0.1.0": {
      "querystring": "npm:querystring@0.2.0"
    },
    "github:jspm/nodelibs-stream@0.1.0": {
      "stream-browserify": "npm:stream-browserify@1.0.0"
    },
    "github:jspm/nodelibs-string_decoder@0.1.0": {
      "string_decoder": "npm:string_decoder@0.10.31"
    },
    "github:jspm/nodelibs-timers@0.1.0": {
      "timers-browserify": "npm:timers-browserify@1.4.2"
    },
    "github:jspm/nodelibs-tty@0.1.0": {
      "tty-browserify": "npm:tty-browserify@0.0.0"
    },
    "github:jspm/nodelibs-url@0.1.0": {
      "url": "npm:url@0.10.3"
    },
    "github:jspm/nodelibs-util@0.1.0": {
      "util": "npm:util@0.10.3"
    },
    "github:jspm/nodelibs-vm@0.1.0": {
      "vm-browserify": "npm:vm-browserify@0.0.4"
    },
    "github:mobilexag/plugin-sass@0.3.1": {
      "autoprefixer": "npm:autoprefixer@6.3.6",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "lodash": "npm:lodash@3.10.1",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "postcss": "npm:postcss@5.0.21",
      "reqwest": "github:ded/reqwest@2.0.5",
      "sass.js": "npm:sass.js@0.9.10",
      "url": "github:jspm/nodelibs-url@0.1.0"
    },
    "github:pablojim/highcharts-ng@0.0.11": {
      "angular": "github:angular/bower-angular@1.5.5",
      "highcharts/highcharts-dist": "github:highcharts/highcharts-dist@4.2.5"
    },
    "github:rochal/jQuery-slimScroll@1.3.7": {
      "jquery": "npm:jquery@2.2.3"
    },
    "github:twbs/bootstrap@3.3.6": {
      "jquery": "npm:jquery@2.2.3"
    },
    "npm:amdefine@1.0.0": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "module": "github:jspm/nodelibs-module@0.1.0",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:asn1.js@4.6.0": {
      "assert": "github:jspm/nodelibs-assert@0.1.0",
      "bn.js": "npm:bn.js@4.11.3",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "inherits": "npm:inherits@2.0.1",
      "minimalistic-assert": "npm:minimalistic-assert@1.0.0",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2",
      "vm": "github:jspm/nodelibs-vm@0.1.0"
    },
    "npm:assert@1.3.0": {
      "systemjs-json": "github:systemjs/plugin-json@0.1.2",
      "util": "npm:util@0.10.3"
    },
    "npm:autoprefixer@6.3.6": {
      "browserslist": "npm:browserslist@1.3.1",
      "caniuse-db": "npm:caniuse-db@1.0.30000464",
      "normalize-range": "npm:normalize-range@0.1.2",
      "num2fraction": "npm:num2fraction@1.2.2",
      "postcss": "npm:postcss@5.0.21",
      "postcss-value-parser": "npm:postcss-value-parser@3.3.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:babel-code-frame@6.8.0": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "chalk": "npm:chalk@1.1.3",
      "esutils": "npm:esutils@2.0.2",
      "js-tokens": "npm:js-tokens@1.0.3"
    },
    "npm:babel-core@6.8.0": {
      "babel-code-frame": "npm:babel-code-frame@6.8.0",
      "babel-generator": "npm:babel-generator@6.8.0",
      "babel-helpers": "npm:babel-helpers@6.8.0",
      "babel-messages": "npm:babel-messages@6.8.0",
      "babel-register": "npm:babel-register@6.8.0",
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-template": "npm:babel-template@6.8.0",
      "babel-traverse": "npm:babel-traverse@6.8.0",
      "babel-types": "npm:babel-types@6.8.1",
      "babylon": "npm:babylon@6.8.0",
      "convert-source-map": "npm:convert-source-map@1.2.0",
      "debug": "npm:debug@2.2.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "json5": "npm:json5@0.4.0",
      "lodash": "npm:lodash@3.10.1",
      "minimatch": "npm:minimatch@2.0.10",
      "module": "github:jspm/nodelibs-module@0.1.0",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "path-exists": "npm:path-exists@1.0.0",
      "path-is-absolute": "npm:path-is-absolute@1.0.0",
      "private": "npm:private@0.1.6",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "shebang-regex": "npm:shebang-regex@1.0.0",
      "slash": "npm:slash@1.0.0",
      "source-map": "npm:source-map@0.5.6",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:babel-generator@6.8.0": {
      "babel-messages": "npm:babel-messages@6.8.0",
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-types": "npm:babel-types@6.8.1",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "detect-indent": "npm:detect-indent@3.0.1",
      "is-integer": "npm:is-integer@1.0.6",
      "lodash": "npm:lodash@3.10.1",
      "repeating": "npm:repeating@1.1.3",
      "source-map": "npm:source-map@0.5.6",
      "trim-right": "npm:trim-right@1.0.1"
    },
    "npm:babel-helpers@6.8.0": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-template": "npm:babel-template@6.8.0"
    },
    "npm:babel-messages@6.8.0": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:babel-register@6.8.0": {
      "babel-core": "npm:babel-core@6.8.0",
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "core-js": "npm:core-js@2.4.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "home-or-tmp": "npm:home-or-tmp@1.0.0",
      "lodash": "npm:lodash@3.10.1",
      "mkdirp": "npm:mkdirp@0.5.1",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "path-exists": "npm:path-exists@1.0.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "source-map-support": "npm:source-map-support@0.2.10"
    },
    "npm:babel-runtime@5.8.38": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:babel-runtime@6.6.1": {
      "core-js": "npm:core-js@2.4.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:babel-template@6.8.0": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-traverse": "npm:babel-traverse@6.8.0",
      "babel-types": "npm:babel-types@6.8.1",
      "babylon": "npm:babylon@6.8.0",
      "lodash": "npm:lodash@3.10.1"
    },
    "npm:babel-traverse@6.8.0": {
      "babel-code-frame": "npm:babel-code-frame@6.8.0",
      "babel-messages": "npm:babel-messages@6.8.0",
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-types": "npm:babel-types@6.8.1",
      "babylon": "npm:babylon@6.8.0",
      "debug": "npm:debug@2.2.0",
      "globals": "npm:globals@8.18.0",
      "invariant": "npm:invariant@2.2.1",
      "lodash": "npm:lodash@3.10.1",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "repeating": "npm:repeating@1.1.3"
    },
    "npm:babel-types@6.8.1": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "babel-traverse": "npm:babel-traverse@6.8.0",
      "esutils": "npm:esutils@2.0.2",
      "lodash": "npm:lodash@3.10.1",
      "to-fast-properties": "npm:to-fast-properties@1.0.2"
    },
    "npm:babylon@6.8.0": {
      "babel-runtime": "npm:babel-runtime@6.6.1",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:bn.js@4.11.3": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:brace-expansion@1.1.4": {
      "balanced-match": "npm:balanced-match@0.4.1",
      "concat-map": "npm:concat-map@0.0.1",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:browserify-aes@1.0.6": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "buffer-xor": "npm:buffer-xor@1.0.3",
      "cipher-base": "npm:cipher-base@1.0.2",
      "create-hash": "npm:create-hash@1.1.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "evp_bytestokey": "npm:evp_bytestokey@1.0.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "inherits": "npm:inherits@2.0.1",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:browserify-cipher@1.0.0": {
      "browserify-aes": "npm:browserify-aes@1.0.6",
      "browserify-des": "npm:browserify-des@1.0.0",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "evp_bytestokey": "npm:evp_bytestokey@1.0.0"
    },
    "npm:browserify-des@1.0.0": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "cipher-base": "npm:cipher-base@1.0.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "des.js": "npm:des.js@1.0.0",
      "inherits": "npm:inherits@2.0.1",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:browserify-rsa@4.0.1": {
      "bn.js": "npm:bn.js@4.11.3",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "constants": "github:jspm/nodelibs-constants@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "randombytes": "npm:randombytes@2.0.3",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:browserify-sign@4.0.0": {
      "bn.js": "npm:bn.js@4.11.3",
      "browserify-rsa": "npm:browserify-rsa@4.0.1",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "create-hash": "npm:create-hash@1.1.2",
      "create-hmac": "npm:create-hmac@1.1.4",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "elliptic": "npm:elliptic@6.2.3",
      "inherits": "npm:inherits@2.0.1",
      "parse-asn1": "npm:parse-asn1@5.0.0",
      "stream": "github:jspm/nodelibs-stream@0.1.0"
    },
    "npm:browserslist@1.3.1": {
      "caniuse-db": "npm:caniuse-db@1.0.30000464",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:buffer-xor@1.0.3": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:buffer@3.6.0": {
      "base64-js": "npm:base64-js@0.0.8",
      "child_process": "github:jspm/nodelibs-child_process@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "ieee754": "npm:ieee754@1.1.6",
      "isarray": "npm:isarray@1.0.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:chalk@1.1.3": {
      "ansi-styles": "npm:ansi-styles@2.2.1",
      "escape-string-regexp": "npm:escape-string-regexp@1.0.5",
      "has-ansi": "npm:has-ansi@2.0.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "strip-ansi": "npm:strip-ansi@3.0.1",
      "supports-color": "npm:supports-color@2.0.0"
    },
    "npm:cipher-base@1.0.2": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "inherits": "npm:inherits@2.0.1",
      "stream": "github:jspm/nodelibs-stream@0.1.0",
      "string_decoder": "github:jspm/nodelibs-string_decoder@0.1.0",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:clean-css@3.4.12": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "commander": "npm:commander@2.8.1",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "http": "github:jspm/nodelibs-http@1.7.1",
      "https": "github:jspm/nodelibs-https@0.1.0",
      "os": "github:jspm/nodelibs-os@0.1.0",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "source-map": "npm:source-map@0.4.4",
      "url": "github:jspm/nodelibs-url@0.1.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:commander@2.8.1": {
      "child_process": "github:jspm/nodelibs-child_process@0.1.0",
      "events": "github:jspm/nodelibs-events@0.1.1",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "graceful-readlink": "npm:graceful-readlink@1.0.1",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:constants-browserify@0.0.1": {
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:convert-source-map@1.2.0": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0"
    },
    "npm:core-js@2.4.0": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:core-util-is@1.0.2": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0"
    },
    "npm:create-ecdh@4.0.0": {
      "bn.js": "npm:bn.js@4.11.3",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "elliptic": "npm:elliptic@6.2.3"
    },
    "npm:create-hash@1.1.2": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "cipher-base": "npm:cipher-base@1.0.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "inherits": "npm:inherits@2.0.1",
      "ripemd160": "npm:ripemd160@1.0.1",
      "sha.js": "npm:sha.js@2.4.5"
    },
    "npm:create-hmac@1.1.4": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "create-hash": "npm:create-hash@1.1.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "inherits": "npm:inherits@2.0.1",
      "stream": "github:jspm/nodelibs-stream@0.1.0"
    },
    "npm:crypto-browserify@3.11.0": {
      "browserify-cipher": "npm:browserify-cipher@1.0.0",
      "browserify-sign": "npm:browserify-sign@4.0.0",
      "create-ecdh": "npm:create-ecdh@4.0.0",
      "create-hash": "npm:create-hash@1.1.2",
      "create-hmac": "npm:create-hmac@1.1.4",
      "diffie-hellman": "npm:diffie-hellman@5.0.2",
      "inherits": "npm:inherits@2.0.1",
      "pbkdf2": "npm:pbkdf2@3.0.4",
      "public-encrypt": "npm:public-encrypt@4.0.0",
      "randombytes": "npm:randombytes@2.0.3",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:debug@2.2.0": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "ms": "npm:ms@0.7.1",
      "net": "github:jspm/nodelibs-net@0.1.2",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "tty": "github:jspm/nodelibs-tty@0.1.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:des.js@1.0.0": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "inherits": "npm:inherits@2.0.1",
      "minimalistic-assert": "npm:minimalistic-assert@1.0.0"
    },
    "npm:detect-indent@3.0.1": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "get-stdin": "npm:get-stdin@4.0.1",
      "minimist": "npm:minimist@1.2.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "repeating": "npm:repeating@1.1.3",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:diffie-hellman@5.0.2": {
      "bn.js": "npm:bn.js@4.11.3",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "miller-rabin": "npm:miller-rabin@4.0.0",
      "randombytes": "npm:randombytes@2.0.3",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:elliptic@6.2.3": {
      "bn.js": "npm:bn.js@4.11.3",
      "brorand": "npm:brorand@1.0.5",
      "hash.js": "npm:hash.js@1.0.3",
      "inherits": "npm:inherits@2.0.1",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:evp_bytestokey@1.0.0": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "create-hash": "npm:create-hash@1.1.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:font-awesome@4.6.1": {
      "css": "github:systemjs/plugin-css@0.1.21"
    },
    "npm:get-stdin@4.0.1": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:globals@8.18.0": {
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:graceful-readlink@1.0.1": {
      "fs": "github:jspm/nodelibs-fs@0.1.2"
    },
    "npm:has-ansi@2.0.0": {
      "ansi-regex": "npm:ansi-regex@2.0.0"
    },
    "npm:has-flag@1.0.0": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:hash.js@1.0.3": {
      "inherits": "npm:inherits@2.0.1"
    },
    "npm:home-or-tmp@1.0.0": {
      "os-tmpdir": "npm:os-tmpdir@1.0.1",
      "user-home": "npm:user-home@1.1.1"
    },
    "npm:https-browserify@0.0.0": {
      "http": "github:jspm/nodelibs-http@1.7.1"
    },
    "npm:inherits@2.0.1": {
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:invariant@2.2.1": {
      "loose-envify": "npm:loose-envify@1.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:is-finite@1.0.1": {
      "number-is-nan": "npm:number-is-nan@1.0.0"
    },
    "npm:is-integer@1.0.6": {
      "is-finite": "npm:is-finite@1.0.1",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:isarray@1.0.0": {
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:js-base64@2.1.9": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0"
    },
    "npm:json5@0.4.0": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:lodash@3.10.1": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:loose-envify@1.1.0": {
      "js-tokens": "npm:js-tokens@1.0.3",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "stream": "github:jspm/nodelibs-stream@0.1.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:miller-rabin@4.0.0": {
      "bn.js": "npm:bn.js@4.11.3",
      "brorand": "npm:brorand@1.0.5"
    },
    "npm:minimatch@2.0.10": {
      "brace-expansion": "npm:brace-expansion@1.1.4",
      "path": "github:jspm/nodelibs-path@0.1.0"
    },
    "npm:mkdirp@0.5.1": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "minimist": "npm:minimist@0.0.8",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:os-browserify@0.1.2": {
      "os": "github:jspm/nodelibs-os@0.1.0"
    },
    "npm:os-tmpdir@1.0.1": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:parse-asn1@5.0.0": {
      "asn1.js": "npm:asn1.js@4.6.0",
      "browserify-aes": "npm:browserify-aes@1.0.6",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "create-hash": "npm:create-hash@1.1.2",
      "evp_bytestokey": "npm:evp_bytestokey@1.0.0",
      "pbkdf2": "npm:pbkdf2@3.0.4",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:path-browserify@0.0.0": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:path-exists@1.0.0": {
      "fs": "github:jspm/nodelibs-fs@0.1.2"
    },
    "npm:path-is-absolute@1.0.0": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:pbkdf2@3.0.4": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "child_process": "github:jspm/nodelibs-child_process@0.1.0",
      "create-hmac": "npm:create-hmac@1.1.4",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:postcss@5.0.21": {
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "js-base64": "npm:js-base64@2.1.9",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "source-map": "npm:source-map@0.5.6",
      "supports-color": "npm:supports-color@3.1.2"
    },
    "npm:process@0.11.3": {
      "assert": "github:jspm/nodelibs-assert@0.1.0"
    },
    "npm:public-encrypt@4.0.0": {
      "bn.js": "npm:bn.js@4.11.3",
      "browserify-rsa": "npm:browserify-rsa@4.0.1",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "create-hash": "npm:create-hash@1.1.2",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "parse-asn1": "npm:parse-asn1@5.0.0",
      "randombytes": "npm:randombytes@2.0.3"
    },
    "npm:punycode@1.3.2": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:randombytes@2.0.3": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:readable-stream@1.1.14": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "core-util-is": "npm:core-util-is@1.0.2",
      "events": "github:jspm/nodelibs-events@0.1.1",
      "inherits": "npm:inherits@2.0.1",
      "isarray": "npm:isarray@0.0.1",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "stream-browserify": "npm:stream-browserify@1.0.0",
      "string_decoder": "npm:string_decoder@0.10.31"
    },
    "npm:repeating@1.1.3": {
      "is-finite": "npm:is-finite@1.0.1",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:ripemd160@1.0.1": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:sass.js@0.9.10": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "crypto": "github:jspm/nodelibs-crypto@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:sha.js@2.4.5": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "inherits": "npm:inherits@2.0.1",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:source-map-support@0.2.10": {
      "assert": "github:jspm/nodelibs-assert@0.1.0",
      "buffer": "github:jspm/nodelibs-buffer@0.1.0",
      "child_process": "github:jspm/nodelibs-child_process@0.1.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "http": "github:jspm/nodelibs-http@1.7.1",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "querystring": "github:jspm/nodelibs-querystring@0.1.0",
      "source-map": "npm:source-map@0.1.32"
    },
    "npm:source-map@0.1.32": {
      "amdefine": "npm:amdefine@1.0.0",
      "fs": "github:jspm/nodelibs-fs@0.1.2",
      "path": "github:jspm/nodelibs-path@0.1.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:source-map@0.4.4": {
      "amdefine": "npm:amdefine@1.0.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:source-map@0.5.6": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:stream-browserify@1.0.0": {
      "events": "github:jspm/nodelibs-events@0.1.1",
      "inherits": "npm:inherits@2.0.1",
      "readable-stream": "npm:readable-stream@1.1.14"
    },
    "npm:string_decoder@0.10.31": {
      "buffer": "github:jspm/nodelibs-buffer@0.1.0"
    },
    "npm:strip-ansi@3.0.1": {
      "ansi-regex": "npm:ansi-regex@2.0.0"
    },
    "npm:supports-color@2.0.0": {
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:supports-color@3.1.2": {
      "has-flag": "npm:has-flag@1.0.0",
      "process": "github:jspm/nodelibs-process@0.1.2"
    },
    "npm:timers-browserify@1.4.2": {
      "process": "npm:process@0.11.3"
    },
    "npm:typescript@1.8.10": {
      "os": "github:jspm/nodelibs-os@0.1.0"
    },
    "npm:url@0.10.3": {
      "assert": "github:jspm/nodelibs-assert@0.1.0",
      "punycode": "npm:punycode@1.3.2",
      "querystring": "npm:querystring@0.2.0",
      "util": "github:jspm/nodelibs-util@0.1.0"
    },
    "npm:user-home@1.1.1": {
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:util@0.10.3": {
      "inherits": "npm:inherits@2.0.1",
      "process": "github:jspm/nodelibs-process@0.1.2",
      "systemjs-json": "github:systemjs/plugin-json@0.1.2"
    },
    "npm:vm-browserify@0.0.4": {
      "indexof": "npm:indexof@0.0.1"
    }
  }
});

Full build output:

Started by user anonymous
[EnvInject] - Loading node environment variables.
Building in workspace C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace
Fetching changes from the remote Git repository
Checking out Revision 9a153d4a6240ffasd10220c65d507f3303c9dd2d (refs/remotes/origin/Development)
[workspace] $ sh -xe C:\Users\olle\AppData\Local\Temp\hudson4933018132339743418.sh
+ cd 'C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace/Application/'
+ npm install

> app-dist@0.3.0 postinstall C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application
> jspm install && typings install && webdriver-manager update

     Looking up npm:babel-core
     Looking up npm:babel-runtime
     Looking up npm:core-js
     Looking up npm:typescript
     Looking up npm:font-awesome
     Looking up npm:clean-css
     Looking up npm:jquery
     Updating registry cache...
     Looking up github:mobilexag/plugin-sass
     Looking up github:angular-ui/ui-router
     Looking up github:components/jqueryui
     Looking up github:ncuillery/angular-breadcrumb
     Looking up github:rochal/jQuery-slimScroll

warn Using local override for github:rochal/jQuery-slimScroll@1.3.7
     Looking up github:frankwallis/plugin-typescript
     Looking up github:systemjs/plugin-css
     Looking up github:highcharts/highcharts-dist

warn Using local override for github:highcharts/highcharts-dist@4.2.5
     Looking up github:twbs/bootstrap
     Looking up github:systemjs/plugin-image
     Looking up github:pablojim/highcharts-ng
     Looking up github:angular/bower-angular
     Looking up github:angular/bower-angular-mocks
     Looking up github:daneden/animate.css
     Looking up github:systemjs/plugin-text
     Looking up github:HubSpot/pace
     Looking up github:highcharts/export-csv
     Looking up github:moment/moment
     Looking up github:onokumus/metisMenu
     Looking up github:Foxandxss/angular-toastr
     Looking up github:components/webfontloader
ok   Up to date - babel as npm:babel-core@^5.8.24 (5.8.38)
ok   Up to date - jquery as npm:jquery@^2.2.0 (2.2.3)
     Looking up npm:babel-code-frame
     Looking up npm:babel-generator
     Looking up npm:babel-helpers
     Looking up npm:babel-messages
     Looking up npm:babel-template
     Looking up npm:babel-register
     Looking up npm:babel-traverse
     Looking up npm:babel-types
     Looking up npm:babylon
     Looking up npm:convert-source-map
     Looking up npm:debug
     Looking up npm:json5
     Looking up npm:lodash
     Looking up npm:minimatch
     Looking up npm:path-exists
     Looking up npm:path-is-absolute
     Looking up npm:private
     Looking up npm:shebang-regex
     Looking up npm:slash
     Looking up npm:source-map
     Looking up npm:commander
     Looking up npm:autoprefixer
     Looking up npm:postcss
     Looking up npm:sass.js
     Looking up npm:chalk
     Looking up npm:esutils
     Looking up npm:js-tokens
     Looking up npm:detect-indent
     Looking up npm:is-integer
     Looking up npm:repeating
     Looking up npm:trim-right
     Looking up npm:globals
     Looking up npm:invariant
     Looking up npm:to-fast-properties
     Looking up npm:ms
     Looking up npm:home-or-tmp
     Looking up npm:mkdirp
     Looking up npm:source-map-support
     Looking up npm:supports-color
     Looking up npm:js-base64
     Looking up npm:amdefine
     Looking up npm:graceful-readlink
     Looking up npm:brace-expansion
     Looking up npm:ansi-styles
     Looking up npm:escape-string-regexp
     Looking up npm:has-ansi
     Looking up npm:strip-ansi
     Looking up npm:is-finite
     Looking up npm:get-stdin
     Looking up npm:minimist
     Looking up npm:postcss-value-parser
     Looking up npm:normalize-range
     Looking up npm:num2fraction
     Looking up npm:browserslist
     Looking up npm:caniuse-db
     Looking up npm:loose-envify
     Looking up npm:has-flag
     Looking up npm:ansi-regex
     Looking up npm:number-is-nan
     Looking up npm:balanced-match
     Looking up npm:concat-map
     Looking up github:jspm/nodelibs-http
     Looking up github:jspm/nodelibs-fs
ok   Up to date - webfont as github:components/webfontloader@^1.6.3 (1.6.3)
     Looking up github:jspm/nodelibs-url
     Looking up github:systemjs/plugin-json
     Looking up npm:os-tmpdir
     Looking up npm:user-home
     Looking up github:jspm/nodelibs-https
     Looking up github:jspm/nodelibs-os
     Looking up github:jspm/nodelibs-util
     Looking up github:jspm/nodelibs-path
     Looking up github:jspm/nodelibs-process
     Looking up github:jspm/nodelibs-buffer
     Looking up github:ded/reqwest
     Looking up github:jspm/nodelibs-events
     Looking up github:jspm/nodelibs-child_process
     Looking up github:jspm/nodelibs-module
     Looking up github:jspm/nodelibs-assert
     Looking up github:jspm/nodelibs-stream
     Looking up github:jspm/nodelibs-querystring
     Looking up github:jspm/nodelibs-crypto
     Looking up npm:stream-browserify
     Looking up npm:inherits
     Looking up npm:readable-stream
     Looking up npm:core-util-is
     Looking up npm:isarray
     Looking up npm:string_decoder
     Looking up npm:querystring
     Looking up npm:crypto-browserify
     Looking up npm:browserify-cipher
     Looking up npm:create-ecdh
     Looking up npm:browserify-sign
     Looking up npm:create-hmac
     Looking up npm:create-hash
     Looking up npm:diffie-hellman
     Looking up npm:pbkdf2
     Looking up npm:randombytes
     Looking up npm:public-encrypt
     Looking up npm:browserify-aes
     Looking up npm:evp_bytestokey
     Looking up npm:browserify-des
     Looking up npm:cipher-base
     Looking up npm:ripemd160
     Looking up npm:bn.js
     Looking up npm:sha.js
     Looking up npm:browserify-rsa
     Looking up npm:elliptic
     Looking up npm:parse-asn1
     Looking up npm:miller-rabin
     Looking up npm:des.js
     Looking up npm:buffer-xor
     Looking up npm:brorand
     Looking up npm:asn1.js
     Looking up npm:minimalistic-assert
     Looking up npm:hash.js
     Looking up npm:assert
     Looking up npm:util
     Looking up github:jspm/nodelibs-constants
     Looking up github:jspm/nodelibs-string_decoder
     Looking up github:jspm/nodelibs-vm
     Looking up npm:vm-browserify
     Looking up npm:indexof
     Looking up npm:constants-browserify
     Looking up npm:events
     Looking up npm:buffer
     Looking up npm:base64-js
     Looking up npm:ieee754
     Looking up npm:process
     Looking up npm:path-browserify
ok   Up to date - babel-runtime as npm:babel-runtime@^5.8.24 (5.8.38)
     Looking up npm:os-browserify
ok   Up to date - typescript as npm:typescript@^1.8.2 (1.8.10)
     Looking up npm:https-browserify
ok   Up to date - core-js as npm:core-js@^2.4.0 (2.4.0)
     Looking up npm:url
     Looking up npm:punycode
ok   Up to date - scss as github:mobilexag/plugin-sass@^0.3.0 (0.3.1)
     Looking up npm:Base64
ok   Up to date - clean-css as npm:clean-css@^3.4.12 (3.4.12)
ok   Up to date - babel-core as npm:babel-core@^6.8.0 (6.8.0)
ok   Up to date - metismenu as github:onokumus/metisMenu@^2.5.2 (2.5.2)
ok   Up to date - moment as github:moment/moment@^2.13.0 (2.13.0)
     Downloading github:highcharts/export-csv@master
ok   Up to date - pace as github:HubSpot/pace@^1.0.2 (1.0.2)
ok   Up to date - text as github:systemjs/plugin-text@^0.0.8 (0.0.8)
ok   Up to date - animate as github:daneden/animate.css@^3.5.1 (3.5.1)
ok   Installed highcharts/export-csv as github:highcharts/export-csv@master (master)
ok   Up to date - angular as github:angular/bower-angular@^1.5.5 (1.5.5)
ok   Up to date - angular-ui-router as github:angular-ui/ui-router@^0.2.18 (0.2.18)
ok   Up to date - angular-mocks as github:angular/bower-angular-mocks@^1.5.5 (1.5.5)
ok   Up to date - highcharts-ng as github:pablojim/highcharts-ng@^0.0.11 (0.0.11)
ok   Up to date - image as github:systemjs/plugin-image@^0.1.0 (0.1.0)
ok   Up to date - highcharts as github:highcharts/highcharts-dist@^4.2.5 (4.2.5)
ok   Up to date - bootstrap as github:twbs/bootstrap@^3.3.6 (3.3.6)
ok   Up to date - css as github:systemjs/plugin-css@^0.1.21 (0.1.21)
ok   Up to date - font-awesome as npm:font-awesome@^4.6.1 (4.6.1)
ok   Up to date - angular-toastr as github:Foxandxss/angular-toastr@^1.7.0 (1.7.0)
ok   Up to date - ts as github:frankwallis/plugin-typescript@^4.0.5 (4.0.9)
ok   Up to date - jquery-slimscroll as github:rochal/jQuery-slimScroll@^1.3.7 (1.3.7)
ok   Up to date - angular-breadcrumb as github:ncuillery/angular-breadcrumb@^0.4.1 (0.4.1)
ok   Up to date - jquery-ui as github:components/jqueryui@^1.11.4 (1.11.4)
     Clearing configuration for github:jspm/nodelibs-net@0.1.2
     Clearing configuration for github:jspm/nodelibs-timers@0.1.0
     Clearing configuration for github:jspm/nodelibs-tty@0.1.0
     Clearing configuration for npm:timers-browserify@1.4.2
     Installed Forks

                                  npm:babel-core 5.8.38 6.8.0
                               npm:babel-runtime 5.8.38 6.6.1
                                     npm:isarray 0.0.1 1.0.0
                                    npm:minimist 0.0.8 1.2.0
                                  npm:source-map 0.1.32 0.4.4 0.5.6
                              npm:supports-color 2.0.0 3.1.2

     To inspect individual package constraints, use jspm inspect registry:name.

ok   Install complete.

├── angular (global)
├── angular-mocks (global)
├── angular-protractor (global)
├── angular-toastr (global)
├── angular-ui-router (global)
├── chai (global)
├── highcharts (global)
├── highcharts-ng (global)
├── jquery (global)
├── jqueryui (global)
├── metismenu (global)
├── mocha (global)
├── moment (global)
├── moment-node (global)
├── require (global)
├── selenium-webdriver (global)
├── sinon (global)
├── sinon-chai (global)
├── toastr (global)
├── angular-breadcrumb (global dev)
├── angular-mocks (global dev)
├── angular-protractor (global dev)
├── chai (global dev)
├── mocha (global dev)
├── selenium-webdriver (global dev)
├── sinon (global dev)
└── sinon-chai (global dev)

selenium standalone is up to date.
chromedriver is up to date.
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.12
npm WARN gulp-typedoc@2.0.0 requires a peer of typedoc@>=0.3.9 but none was installed.
+ npm run check

> app-dist@0.3.0 check C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application
> gulp check

[20:09:54] Using gulpfile C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application\gulpfile.js
[20:09:54] Starting 'check'...
[20:09:54] Starting 'check:eslint'...
[20:09:54] Finished 'check' after 312 ms
[20:09:55] Finished 'check:eslint' after 691 ms
[20:09:55] Starting 'check:tslint:src'...
[20:09:55] Starting 'check:tslint:test'...
[20:09:55] Finished 'check:tslint:test' after 395 ms
[20:09:56] Finished 'check:tslint:src' after 1.43 s
[20:09:56] Starting 'check:tslint'...
[20:09:56] Finished 'check:tslint' after 6 μs
+ npm run build

> app-dist@0.3.0 build C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application
> gulp build:dist

[20:09:57] Using gulpfile C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application\gulpfile.js
[20:09:57] Starting 'clean:src'...
[20:09:57] Finished 'clean:src' after 102 ms
[20:09:57] Starting 'compile:src'...
[20:09:59] Finished 'compile:src' after 1.95 s
[20:09:59] Starting 'ng:directives'...
[20:09:59] Finished 'ng:directives' after 263 ms
[20:09:59] Starting 'ng:annotate'...
[20:10:00] Finished 'ng:annotate' after 288 ms
[20:10:00] Starting 'ng:config'...
[20:10:00] Finished 'ng:config' after 98 ms
[20:10:00] Starting 'move:fonts'...
[20:10:01] Finished 'move:fonts' after 838 ms
[20:10:01] Starting 'move:templates'...
[20:10:01] Finished 'move:templates' after 24 ms
[20:10:01] Starting 'move:images'...
[20:10:01] Finished 'move:images' after 6 ms
[20:10:01] Starting 'build:dist'...

    Build Failed
 Internal Error: Not enough space

npm ERR! Windows_NT 6.2.9200
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "build"
npm ERR! node v5.11.1
npm ERR! npm  v3.8.6
npm ERR! code ELIFECYCLE
npm ERR! app-dist@0.3.0 build: `gulp build:dist`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the app-dist@0.3.0 build script 'gulp build:dist'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the app-dist package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     gulp build:dist
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs app-dist
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls app-dist
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     C:\Program Files (x86)\Jenkins\jobs\Application - Test01\workspace\Application\npm-debug.log
Build step 'Execute shell' marked build as failure
Finished: FAILURE
guybedford commented 8 years ago

I'm not sure of the exact error, but this could well be a memory limit issue, as the builder does have a large memory footprint.