-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"name": "mla",
"version": "0.0.1",
"description": "MLA (machine learning algorithms): A collection of classfier and machine learning algorythms with a focus on text and speech.",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha ./test/index.js",
"build": "babel src -d dist --copy-files",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/BudickDa/MLA"
},
"keywords": [
"classifier",
"machine learning",
"knearest neighbour",
"kmean",
"gaussian",
"document clustering",
"big data"
],
"author": "Daniel Budick",
"license": "AGPL-3.0",
"dependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.17.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-regenerator-runtime": "^6.5.0",
"chance": "^1.0.8",
"install": "^0.8.9",
"lancaster-stemmer": "^1.0.0",
"lodash": "^4.17.4",
"lomath": "^0.3.0",
"multivariate-gaussian": "^3.3.1",
"ndarray-determinant": "^1.0.0",
"ndarray-pack": "^1.2.1",
"npm": "^4.5.0",
"numeric": "^1.2.6",
"snowball-german": "^1.0.0",
"stemmer": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"mocha": "^3.1.2",
"chai": "*"
}
}