-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "raccoon",
"author": "Guy Morita",
"description": "A Collaborative Filtering Recommendation Engine for Node.js utilizing Redis",
"version": "0.2.8",
"repository": {
"type": "git",
"url": "https://github.com/guymorita/recommendationRaccoon.git"
},
"dependencies": {
"async": "~2.1.x",
"bluebird": "~3.4.x",
"redis": "~2.6.x",
"underscore": "~1.8.x"
},
"main": "./index.js",
"engines": {
"node": ">= 6.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/guymorita/recommendationRaccoon/LICENSE"
}
],
"keywords": [
"recommend",
"recommended",
"recommendation",
"engine",
"collaborative",
"filtering",
"middleware",
"redis"
],
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/guymorita/recommendationRaccoon/issues"
},
"devDependencies": {
"chai": "~3.5.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-cov": "^0.4.0",
"mocha": "~3.2.0"
}
}