-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 627 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 627 Bytes
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
{
"name": "recommender-system-javascript-movielens",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node --presets es2015,stage-2",
"test": "echo \"No test specified\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"compute-cosine-similarity": "^1.0.0",
"fast-csv": "^2.4.1",
"mathjs": "^3.18.0",
"natural": "^0.5.4"
}
}