forked from qminer/qminer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 2.8 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "qminer",
"version": "9.3.2",
"description": "A C++ based data analytics platform for processing large-scale real-time streams containing structured and unstructured data",
"engines": {
"node": ">=8"
},
"license": "BSD-2-Clause-FreeBSD",
"author": "Blaz Fortuna <[email protected]>",
"contributors": [
{
"name": "Janez Brank",
"email": "[email protected]"
},
{
"name": "Blaz Fortuna",
"email": "[email protected]"
},
{
"name": "Carolina Fortuna",
"email": "[email protected]"
},
{
"name": "Marko Grobelnik",
"email": "[email protected]"
},
{
"name": "Viktor Jovanoski",
"email": "[email protected]"
},
{
"name": "Mario Karlovcec",
"email": "[email protected]"
},
{
"name": "Blaz Kazic",
"email": "[email protected]"
},
{
"name": "Klemen Kenda",
"email": "[email protected]"
},
{
"name": "Gregor Leban",
"email": "[email protected]"
},
{
"name": "Blaz Novak",
"email": "[email protected]"
},
{
"name": "Andrej Muhic",
"email": "[email protected]"
},
{
"name": "Dunja Mladenic",
"email": "[email protected]"
},
{
"name": "Erik Novak",
"email": "[email protected]"
},
{
"name": "Jost Novljan",
"email": "[email protected]"
},
{
"name": "Miha Papler",
"email": "[email protected]"
},
{
"name": "Luis Rei",
"email": "[email protected]"
},
{
"name": "Jan Rupnik",
"email": "[email protected]"
},
{
"name": "Blaz Sovdat",
"email": "[email protected]"
},
{
"name": "Luka Stopar",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/qminer/qminer"
},
"main": "./index.js",
"dependencies": {
"nan": "^2.14.2",
"node-gyp": "^7.1.2",
"node-pre-gyp": "^0.15.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"async": "^3.2.0",
"aws-sdk": "^2.767.0",
"jsdoc": "^3.6.6",
"jsdoc-baseline": "^0.1.5",
"mocha": "^6.2.3",
"mustache": "^4.0.1"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"test:nodejs": "cd test && cd nodejs && mocha *.js --timeout 30000",
"test:cpp": "node ./test/cpp/run_tests.js",
"test": "npm run test:nodejs && npm run test:cpp"
},
"binary": {
"module_name": "qm",
"module_path": "./out",
"host": "https://node-qminer-binary.s3.amazonaws.com"
},
"keywords": [
"addon",
"machine-learning",
"linear-algebra",
"snap",
"social-network-analysis",
"analytics",
"data",
"mining",
"text-mining"
]
}