-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 724 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 724 Bytes
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
{
"name": "collaborative-filter",
"version": "1.0.0-beta.3",
"description": "A lightweight implementation of collaborative filtering.",
"repository": {
"type": "git",
"url": "git:github.com/TSonono/collaborative-filtering"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"keywords": [
"statistics",
"collaborative-filtering",
"node-js",
"recommendation-engine"
],
"author": "Tofik Sonono",
"license": "MIT",
"dependencies": {
"mathjs": "^6.2.3"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}