7fife-backend/node_modules/natural/package.json

123 lines
3.2 KiB
JSON
Raw Normal View History

2024-03-07 13:01:44 +00:00
{
2024-03-11 12:29:54 +00:00
"name": "natural",
"description": "General natural language (tokenizing, stemming (English, Russian, Spanish), part-of-speech tagging, sentiment analysis, classification, inflection, phonetics, tfidf, WordNet, jaro-winkler, Levenshtein distance, Dice's Coefficient) facilities for node.",
"version": "6.10.0",
"homepage": "https://github.com/NaturalNode/natural",
"repository": {
"type": "git",
"url": "git://github.com/NaturalNode/natural.git"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"engines": {
"node": ">=0.4.10"
2024-03-07 13:01:44 +00:00
},
"dependencies": {
"afinn-165": "^1.0.2",
"afinn-165-financialmarketnews": "^3.0.0",
"apparatus": "^0.0.10",
"safe-stable-stringify": "^2.2.0",
"stopwords-iso": "^1.1.0",
"sylvester": "^0.0.12",
"underscore": "^1.9.1",
"wordnet-db": "^3.1.11"
},
"devDependencies": {
"@types/node": "^18.11.18",
"browserfs": "^1.4.3",
"gulp": "^4.0.2",
"gulp-jasmine": "^4.0.0",
"gulp-jasmine-browser": "^4.1.0",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"nyc": "^15.1.0",
"pegjs": "^0.10.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.3",
"sinon": "^1.12.2",
"standard": "^16.0.3",
"ts-standard": "^12.0.2",
"typescript": "^4.9.3",
"uubench": "^0.0.1",
"webpack": "^4.29.0",
"webpack-stream": "^5.2.1"
},
2024-03-11 12:29:54 +00:00
"standard": {
"ignore": [
"/lib/natural/brill_pos_tagger/lib/TF_Parser.js",
"/lib/natural/tokenizers/parser_sentence_tokenizer.js"
],
"env": {
"jasmine": true
}
2024-03-07 13:01:44 +00:00
},
"jscpd": {
"ignore": [
"lib/natural/brill_pos_tagger/lib/TF_Parser.js",
"lib/natural/tokenizers/parser_sentence_tokenizer.js"
]
},
2024-03-11 12:29:54 +00:00
"scripts": {
"benchmark": "node benchmarks",
"clean": "rimraf *~ #* *classifier.json",
"test": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js io_spec/*_spec.js spec/*_spec.js",
"coverage": "nyc --reporter=lcov npm test",
"test_io": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js --random=false io_spec/*_spec.js",
"test_browser": "NODE_PATH=. node ./node_modules/gulp/bin/gulp.js",
"lint": "eslint . --ext .ts",
"lint-ts": "ts-standard **/*.ts"
},
"license": "MIT",
"author": "Chris Umbel <chris@chrisumbel.com>",
2024-03-07 13:01:44 +00:00
"keywords": [
"natural language processing",
"artifical intelligence",
"statistics",
"Porter stemmer",
"Lancaster stemmer",
"tokenizer",
"bigram",
"trigram",
"quadgram",
"ngram",
"stemmer",
"bayes",
"classifier",
"phonetic",
"metaphone",
"inflector",
"Wordnet",
"tf-idf",
"logistic regression",
"doublemetaphone",
"double",
"jaro-winkler distance",
"levenshtein distance",
"string distance",
"part-of-speech tagger",
"Eric Brill",
"Brill tagger",
"sentiment analysis",
"maximum entropy modelling"
],
"main": "./lib/natural/index.js",
2024-03-11 12:29:54 +00:00
"types": "./lib/natural/index.d.ts",
2024-03-07 13:01:44 +00:00
"maintainers": [
{
"name": "Chris Umbel",
"email": "chris@chrisumbel.com",
2024-03-11 12:29:54 +00:00
"web": "http://www.chrisumbel.com"
2024-03-07 13:01:44 +00:00
},
{
"name": "Rob Ellis",
"email": "rob@silentrob.me"
},
{
"name": "Ken Koch",
"email": "kkoch986@gmail.com"
},
{
"name": "Hugo W.L. ter Doest",
"email": "hwl.ter.doest@gmail.com"
}
2024-03-11 12:29:54 +00:00
]
2024-03-07 13:01:44 +00:00
}