-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 712 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 712 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
{
"name": "NaiveBayes",
"version": "0.5.0",
"description": "Naive Bayes Classifier for JavaScript.",
"author": "Surmon",
"license": "MIT",
"homepage": "https://github.surmon.me/naivebayes",
"repository": {
"type": "git",
"url": "https://github.com/surmon-china/naivebayes.git"
},
"main": "dist/naivebayes.umd.js",
"module": "dist/naivebayes.esm.js",
"browser": "dist/naivebayes.umd.js",
"jsdelivr": "dist/naivebayes.umd.js",
"unpkg": "dist/naivebayes.umd.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "libundler",
"test": "node test/index.js"
},
"devDependencies": {
"@surmon-china/libundler": "^2.2.0",
"segment": "^0.1.3"
}
}