-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "wink-naive-bayes-text-classifier",
"version": "2.2.1",
"description": "Naive Bayes Text Classifier",
"keywords": [
"Naive Bayes",
"Classifier",
"Machine Learning",
"NLP",
"Natural Language Processing",
"Chatbot",
"Sentiment Analysis",
"winkNLP",
"Text Classification"
],
"main": "src/wink-naive-bayes-text-classifier.js",
"scripts": {
"pretest": "npm run lint && npm run docs",
"test": "nyc --reporter=html --reporter=lcov --reporter=text mocha ./test/",
"sourcedocs": "docker -i src -o ./sourcedocs --sidebar no",
"docs": "jsdoc src/*.js -c .jsdoc.json",
"lint": "eslint ./src/*.js ./test/*.js ./runkit/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/winkjs/wink-naive-bayes-text-classifier.git"
},
"author": "Sanjaya Kumar Saxena",
"license": "MIT",
"bugs": {
"url": "https://github.com/winkjs/wink-naive-bayes-text-classifier/issues"
},
"homepage": "http://winkjs.org/wink-naive-bayes-text-classifier",
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"docdash": "github:winkjs/docdash",
"docker": "^0.2.14",
"eslint": "^8.26.0",
"jsdoc": "^3.6.11",
"mocha": "^10.1.0",
"nyc": "^15.1.0"
},
"dependencies": {
"wink-eng-lite-web-model": "^1.4.3",
"wink-helpers": "^2.0.0",
"wink-nlp": "^1.12.2"
},
"runkitExampleFilename": "./runkit/example.js"
}