-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "content-based-recommender",
"version": "1.5.0",
"description": "A simple content-based recommender implemented in javascript",
"homepage": "https://github.com/stanleyfok/content-based-recommender",
"repository": {
"type": "git",
"url": "git://github.com/stanleyfok/content-based-recommender.git"
},
"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"
},
"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"
}
],
"license": "MIT",
"dependencies": {
"natural": "^0.6.3",
"stopword": "^0.3.4",
"striptags": "^3.1.1",
"underscore": "^1.9.1",
"vector-object": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^6.2.2"
}
}