-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
69 lines (69 loc) · 1.52 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
{
"name": "node-svm",
"version": "2.1.8",
"description": "Support Vector Machine for nodejs",
"main": "lib",
"scripts": {
"test": "grunt"
},
"config": {
"blanket": {
"pattern": [
"node-svm/lib"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/nicolaspanel/node-svm.git"
},
"keywords": [
"svm",
"machine learning",
"libsvm"
],
"author": "Nicolas Panel",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicolaspanel/node-svm/issues"
},
"homepage": "https://github.com/nicolaspanel/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": "~1.0.2",
"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": {
"coveralls": "~2.11.0",
"expect.js": "^0.3.1",
"grunt": "~0.4.4",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-exec": "~0.4.2",
"grunt-node-gyp": "^0.5.0",
"grunt-simple-mocha": "~0.4.0",
"istanbul": "~0.3.2",
"load-grunt-tasks": "~0.6.0",
"mocha": "~1.21.4",
"mocha-lcov-reporter": "0.0.1"
},
"bin": {
"node-svm": "./bin/node-svm"
}
}