NPM + Zurb Foundation + WebPack: Modul 'Foundation' kann nicht aufgelöst werden

Ich arbeite an der Verwendung von Zurb Foundation mit WebPack und NPM.ohn Bower.

Das Problem, auf das ich stoße, ist das gleiche wie das folgende:

https: //github.com/zurb/foundation-sites/issues/738

Wenn Foundation-Sites über NPM installiert werden, gibt es im Wesentlichen Verweise auf ein Modul "foundation", das nicht gefunden wird. Der Fehler

Module not found: Error: Cannot resolve module 'foundation' in c:\Users\Matt\Documents\Projects\test\node_modules\foundation-sites\dist
 @ ./~/foundation-sites/dist/foundation.js 

Hier ist die package.json:

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "dev": "webpack-dev-server"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "foundation-sites": "6.0.5",
    "webpack": "~1.12.6",
    "webpack-dev-server": "~1.2",
    "jquery": "2.1.1"
  }
}

Und hier ist webpack.config.js:

var path = require("path");
var webpack = require("webpack");
module.exports = {
    entry: {
      main: "./app/js/main.js"
    },
    output: {
        path: __dirname,
        filename: "bundle.js"
    },
    module: {
        loaders: [
            { test: /\.css$/, loader: "style!css" },
            {
                test: /\.scss$/,
                loaders: ["style", "css", "sass"]
              },
              { test: /\.vue$/, loader: 'vue' }
        ],
        resolve: {
            modulesDirectories: ['node_modules']
        }
    },
     sassLoader: {
            includePaths: [path.resolve(__dirname, "./node_modules/foundation-sites/scss/")]
          },
    devServer: {
        proxy: {
            '/api/*': {
                target: 'http://localhost:4567',
                secure: false
            }
        }
    }
};

Ich kann das umgehen, indem ich stattdessen das Fundament über die Laube einbinde, aber ich möchte die Laube eliminieren und nur NPM verwenden.