forked from stanleyfok/content-based-recommender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "content-based-recommender-ts",
"version": "2.1.0",
"description": "A simple content-based recommender implemented in javascript",
"homepage": "https://github.com/AnthonyLzq/content-based-recommender",
"repository": {
"type": "git",
"url": "git://github.com/AnthonyLzq/content-based-recommender"
},
"main": "index.js",
"scripts": {
"eslint": "./node_modules/.bin/eslint '**/*.js'",
"eslint-fix": "./node_modules/.bin/eslint --fix '**/*.js'",
"test": "./node_modules/.bin/mocha test/**/*.js",
"release": "standard-version"
},
"keywords": [
"content-based",
"filtering",
"recommender",
"tdidf",
"machine",
"learning"
],
"author": "Stanley Fok <[email protected]> (https://github.com/stanleyfok)",
"contributors": [
{
"url": "https://github.com/mklueh",
"name": "Marian Klühspies"
},
{
"url": "https://github.com/anthonylzq",
"name": "Anthony Lzq"
}
],
"license": "MIT",
"dependencies": {
"natural": "^5.0.3",
"standard-version": "^9.3.1",
"stopword": "^1.0.7",
"striptags": "^3.2.0",
"underscore": "^1.13.1",
"vector-object": "^1.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.2",
"prettier": "^2.3.2"
},
"typings": "index.d.ts"
}