-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "ml-kernel",
"version": "3.0.0",
"description": "A factory for kernel functions",
"main": "./src/kernel.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mljs/kernel.git"
},
"keywords": [
"kernel",
"factory",
"gaussian",
"rbf",
"polynomial",
"fisher",
"data",
"mining",
"datamining",
"machine",
"learning"
],
"author": "Michaël Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/kernel/issues"
},
"homepage": "https://github.com/mljs/kernel#readme",
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0"
},
"dependencies": {
"ml-distance-euclidean": "^2.0.0",
"ml-kernel-gaussian": "^2.0.2",
"ml-kernel-polynomial": "^2.0.1",
"ml-kernel-sigmoid": "^1.0.1",
"ml-matrix": "^6.1.2"
}
}