This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
forked from nicolaspanel/node-svm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.5 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
{
"name": "@candide/node-svm-12-plus",
"version": "3.0.1",
"description": "Support Vector Machine for nodejs",
"main": "lib",
"scripts": {
"test": "grunt"
},
"config": {
"blanket": {
"pattern": [
"node-svm/lib"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/candide-eu/node-svm"
},
"keywords": [
"svm",
"machine learning",
"libsvm"
],
"author": "Nicolas Panel",
"license": "MIT",
"bugs": {
"url": "https://github.com/candide-eu/node-svm/issues"
},
"homepage": "https://github.com/candide-eu/node-svm",
"dependencies": {
"abbrev": "^1.0.5",
"cardinal": "^0.4.4",
"chalk": "^0.5.1",
"graceful-fs": "^4.1.0",
"handlebars": "^2.0.0",
"inquirer": "^0.8.0",
"moment": "^2.8.4",
"mout": "^0.11.0",
"nan": "^2.3.3",
"node-gyp": "^3.0.0",
"nopt": "~3.0.0",
"numeric": "^1.2.6",
"optimist": "^0.6.1",
"osenv": "^0.1.0",
"promptly": "^0.2.0",
"q": "^1.1.2",
"stringify-object": "^1.0.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "~1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-exec": "^3.0.0",
"grunt-node-gyp": "^4.0.0",
"grunt-simple-mocha": "~0.4.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "~5.1.0",
"mocha": "~7.0.0",
"mocha-lcov-reporter": "^1.3.0"
},
"bin": {
"node-svm": "./bin/node-svm"
}
}