UNPKG

2.42 kBJSONView Raw
1{
2 "name": "natural",
3 "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.",
4 "version": "2.1.5",
5 "homepage": "https://github.com/NaturalNode/natural",
6 "repository": {
7 "type": "git",
8 "url": "git://github.com/NaturalNode/natural.git"
9 },
10 "engines": {
11 "node": ">=0.4.10"
12 },
13 "dependencies": {
14 "afinn-165": "^1.0.2",
15 "apparatus": "^0.0.10",
16 "json-stable-stringify": "^1.0.1",
17 "sylvester": "^0.0.12",
18 "underscore": "^1.9.1",
19 "webpack": "^4.29.0",
20 "wordnet-db": "^3.1.11"
21 },
22 "devDependencies": {
23 "browserfs": "^1.4.3",
24 "gulp": "^4.0.0",
25 "gulp-jasmine": "^4.0.0",
26 "gulp-jasmine-browser": "^4.1.0",
27 "jasmine": "^3.3.1",
28 "jasmine-core": "^3.3.0",
29 "pegjs": "^0.10.0",
30 "proxyquire": "^1.8.0",
31 "rimraf": "^2.6.3",
32 "sinon": "^1.12.2",
33 "uubench": "^0.0.1",
34 "webpack-stream": "^5.2.1"
35 },
36 "scripts": {
37 "benchmark": "node benchmarks",
38 "clean": "rimraf *~ #* *classifier.json",
39 "test": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js --random=false spec/*_spec.js",
40 "test_io": "NODE_PATH=. node ./node_modules/jasmine/bin/jasmine.js --random=false io_spec/*_spec.js"
41 },
42 "license": "MIT",
43 "author": "Chris Umbel <chris@chrisumbel.com>",
44 "keywords": [
45 "natural language processing",
46 "artifical intelligence",
47 "statistics",
48 "Porter stemmer",
49 "Lancaster stemmer",
50 "tokenizer",
51 "bigram",
52 "trigram",
53 "quadgram",
54 "ngram",
55 "stemmer",
56 "bayes",
57 "classifier",
58 "phonetic",
59 "metaphone",
60 "inflector",
61 "Wordnet",
62 "tf-idf",
63 "logistic regression",
64 "doublemetaphone",
65 "double",
66 "jaro-winkler distance",
67 "levenshtein distance",
68 "string distance",
69 "part-of-speech tagger",
70 "Eric Brill",
71 "Brill tagger",
72 "sentiment analysis",
73 "maximum entropy modelling"
74 ],
75 "main": "./lib/natural/index.js",
76 "maintainers": [
77 {
78 "name": "Chris Umbel",
79 "email": "chris@chrisumbel.com",
80 "web": "http://www.chrisumbel.com"
81 },
82 {
83 "name": "Rob Ellis",
84 "email": "rob@silentrob.me"
85 },
86 {
87 "name": "Ken Koch",
88 "email": "kkoch986@gmail.com"
89 }
90 ]
91}