There is ability to create your own packs with vis.js.
For doing it you should:
Open file gulpfile.js and add config to INDIVIDUAL_BUNDLES.
For example:
var INDIVIDUAL_BUNDLES = [
{entry: './index-timeline-graph2d.js', filename: 'vis-timeline-
graph2d.min.js'},
{entry: './index-network.js', filename: 'vis-network.min.js'},
{entry: './index-graph3d.js', filename: 'vis-graph3d.min.js'},
{entry: './index-graph3d.js', filename: 'vis-graph3d.js', 'notMini':
true}
];
There added config for vis-graph3d not minified.
For not mini network, I assume config will be:
{entry: './index-network.js', filename: 'vis-network.js', 'notMini': true},
Or you can write your own bundle.
After change file your should make build (see README.md) shortly:
$ cd vis
$ npm install
$ npm run build
After in dist folder you can find vis-network.js.