generated from statsim/port-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.21 KB
/
package.json
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
{
"name": "vis",
"version": "0.3.1",
"description": "Vis. Visualize high-dimensional data",
"main": "main.js",
"scripts": {
"build": "browserify src/process.js -s Process | uglifyjs -cm > process.js && browserify src/render.js -s Render | uglifyjs -cm > render.js",
"build-dev": "browserify src/process.js -s Process > process.js && browserify src/render.js -s Render > render.js",
"watch": "nodemon --watch src --ext js,css,html --exec 'npm run build-dev'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statsim/vis.git"
},
"author": "Anton Zemlyansky",
"license": "MIT",
"bugs": {
"url": "https://github.com/statsim/vis/issues"
},
"homepage": "https://github.com/statsim/vis#readme",
"devDependencies": {
"browserify": "^16.5.1",
"nodemon": "^2.0.3",
"uglify-es": "^3.3.9"
},
"dependencies": {
"autoencoder": "0.0.1",
"csv-parse": "^4.8.8",
"file-saver": "^2.0.2",
"ml-matrix": "^6.4.1",
"ml-pca": "^4.0.1",
"ml-som": "0.0.6",
"plotly.js": "^1.53.0",
"random-forest": "0.0.7",
"tsne": "^1.0.1",
"umap-js": "^1.3.2",
"vis-network": "^8.5.4"
}
}