-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "irf",
"version": "0.1.4",
"keywords": ["incremental", "random", "forest", "machine", "learning", "c++", "native", "sparse", "classifier", "ensemble", "supervised"],
"homepage": "https://github.com/pconstr/irf",
"description": "incremental random forest ensemble classifier (native)",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/pconstr/irf"
},
"engines": {
"node": ">=0.6.0 <0.9.0"
},
"author": "Carlos Guerreiro <[email protected] (http://perceptiveconstructs.com)",
"dependencies": {},
"devDependencies": {"carrier": "0.1.7"},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"bugs" : { "url" : "https://github.com/pconstr/irf/issues" },
"contributors": [
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://perceptiveconstructs.com"
},
{
"name": "Carlos Guerreiro",
"email": "[email protected]",
"web": "http://igalia.com"
}
],
"scripts": {
"test": "cd ./tests && node mushrooms.js"
}
}