-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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
{
"name": "ml-svm",
"version": "2.1.2",
"description": "Support Vector Machine in Javascript",
"main": "src/svm.js",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"eslint": "eslint src test",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-mocha && npm run eslint",
"test-mocha": "mocha --require should --reporter mocha-better-spec-reporter"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/svm"
},
"keywords": [
"super",
"vector",
"machine",
"data",
"mining",
"datamining",
"machine",
"learning"
],
"author": "Miguel Asencio",
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/svm/issues"
},
"homepage": "https://github.com/mljs/svm",
"devDependencies": {
"eslint": "^3.1.0",
"eslint-config-cheminfo": "^1.3.1",
"eslint-plugin-no-only-tests": "^1.1.0",
"ml-cross-validation": "^1.0.1",
"ml-dataset-iris": "^1.0.0",
"ml-xsadd": "^1.0.0",
"mocha": "^3.0.2",
"mocha-better-spec-reporter": "^3.0.2",
"should": "^11.1.0"
},
"dependencies": {
"ml-kernel": "^2.2.0",
"ml-stat": "^1.2.0"
}
}