forked from guymorita/recommendationRaccoon
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@maruware/raccoon",
"author": "maruware",
"description": "A Collaborative Filtering Recommendation Engine for Node.js utilizing Redis",
"version": "0.4.2",
"repository": {
"type": "git",
"url": "https://github.com/maruware/recommendationRaccoon.git"
},
"scripts": {
"build": "npm-run-all clean tsc",
"prepare": "npm run build",
"clean": "rimraf dist/*",
"tsc": "tsc",
"test": "jest",
"test:cov": "jest --coverage && codecov"
},
"dependencies": {
"ioredis": "^4.14.1",
"lodash": "^4.17.15",
"p-all": "^2.1.0",
"p-map": "^3.0.0",
"redis": "~2.6.x"
},
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=11.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/maruware/recommendationRaccoon/LICENSE"
}
],
"keywords": [
"recommend",
"recommended",
"recommendation",
"engine",
"collaborative",
"filtering",
"middleware",
"redis"
],
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/maruware/recommendationRaccoon/issues"
},
"devDependencies": {
"@types/ioredis": "^4.14.3",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"codecov": "^3.6.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.3"
}
}