-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 940 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 940 Bytes
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
{
"name": "naivebayesclassifier",
"title": "NaiveBayesClassifier",
"version": "0.2.0",
"description": "NaiveBayesClassifier is a Multinomial Naive-Bayes Classifier that uses Laplace Smoothing.",
"keywords": [ "naive", "bayes", "classifier", "multinomial", "machine learning", "learn", "categorize", "classify"],
"main": "dist/NaiveBayesClassifier-min.js",
"scripts": {
"test": "gulp test"
},
"author": {
"name": "Hadi Michael",
"url": "http://hadi.io"
},
"repository": {
"type": "git",
"url": "git://github.com/hadimichael/NaiveBayesClassifier.git"
},
"license": "BSD-3-Clause, see LICENSE file",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-jsdoc": "^0.5.8",
"gulp": "^3.8.11",
"gulp-gh-pages": "^0.5.1",
"gulp-grunt": "^0.5.2",
"gulp-jshint": "^1.10.0",
"gulp-minify": "0.0.5",
"gulp-mocha": "^2.0.1",
"gulp-umd": "^0.1.3",
"mocha": "^2.2.5"
}
}