-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
41
42
{
"name": "recomm.js",
"description": "Recomm.js is a javascript library used to build recommendation systems, using Content-Based Filtering System.",
"author": {
"name": "José Gustavo"
},
"version": "1.1.1",
"keywords": [
"recommendation",
"mongodb",
"similar",
"similarity",
"machine learning",
"ai"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "tsc",
"dev": "ts-node src/index.ts"
},
"license": "MIT",
"bugs": "https://github.com/josegustavoo/Recomm.js/issues",
"homepage": "https://github.com/josegustavoo/Recomm.js",
"repository": {
"type": "git",
"url": "https://github.com/josegustavoo/Recomm.js.git"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/stopword": "^1.0.0",
"@types/string-similarity": "^4.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"multilingual-stemmer": "^1.0.2",
"nested-property": "^4.0.0",
"stopword": "^1.0.7",
"string-similarity": "^4.0.4"
}
}