-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 926 Bytes
/
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
{
"name": "select",
"version": "0.0.1",
"description": "",
"main": "process.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"
},
"author": "Anton Zemlyansky",
"dependencies": {
"boruta": "0.0.2",
"csv-parse": "^4.8.9",
"importance": "0.0.4",
"ml-knn": "^3.0.0",
"ml-logistic-regression": "^1.0.2",
"ml-matrix": "^6.4.1",
"ml-regression-multivariate-linear": "^2.0.3",
"plotly.js": "^1.53.0"
},
"devDependencies": {
"browserify": "^16.5.1",
"nodemon": "^2.0.3",
"uglify-es": "^3.3.9"
}
}