-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathnpm-dependencies.js
55 lines (40 loc) · 1.53 KB
/
npm-dependencies.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// When building a web-standalone, browserify will parse this file
// and produce a version which include each dependency that is required()
//
sexpr = require("s-expression");
define("s-expression", [], function() {return sexpr;});
//q = require("q");
if(!!Q) {
define("q", [], function() {return Q;});
}
seedrandom = require("seedrandom");
define("seedrandom", [], function() {return seedrandom;});
sourcemap = require("source-map");
define("source-map", [], function () { return sourcemap; });
jssha256 = require("js-sha256");
define("js-sha256", [], function () { return jssha256; });
jsmd5 = require("js-md5");
define("js-md5", [], function () { return jsmd5; });
colorspaces = require("colorspaces");
define("colorspaces", [], function () { return colorspaces; });
d3 = require("d3");
define("d3", [], function() { return d3; });
d3_tip = require("d3-tip");
define("d3-tip", [], function() { return d3_tip(d3); });
if(!!google) {
define("google-charts", [], function() {return google;});
}
define("fs", [], function () { return {}; });
// NOTE(joe): this is slightly bogus, but due to the way pathlib can load, even
// though it's not used, this needs to be defined (it represents the separator
// for the system).
define("path", [], function () { return {
sep: "/"
};
});
define("http", [], function () {return {};});
define("lockfile", [], function () { return {}; });
define("websocket", [], function () { return {}; });
tensorflow = require("@tensorflow/tfjs");
define("@tensorflow/tfjs", [], function () { return tensorflow; });