I got a list of node-modules, which is managed by NPM.
This is my package.json:
{
  "name": "extension-acme",
  "scripts": {
    "archive": "webpack -p && composer archive --format=zip"
  },
  "devDependencies": {
    "babel-core": "^6.23.1",
    "babel-loader": "^6.1.0",
    "babel-plugin-transform-runtime": "^6.1.2",
    "babel-preset-env": "^1.1.8",
    "babel-preset-es2015": "^6.22.0",
    "babel-runtime": "^5.8.0",
    "vue-hot-reload-api": "^1.2.0",
    "vue-html-loader": "^1.0.0",
    "vue-loader": "^8.2.0",
    "webpack": "^1.12.9"
  }
}
This works fine. But now I'd like to include this node module: https://github.com/craigh411/vue-star-rating
Now the sources of this module have to be stored in app/components/vue-star-rating. 
Is it possible to change the location for this single package?
 
    