{
  "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": "8.1.0",
  "homepage": "https://github.com/NaturalNode/natural",
  "repository": {
    "type": "git",
    "url": "git://github.com/NaturalNode/natural.git"
  },
  "engines": {
    "node": ">=0.4.10"
  },
  "dependencies": {
    "afinn-165": "^1.0.2",
    "afinn-165-financialmarketnews": "^3.0.0",
    "apparatus": "^0.0.10",
    "dotenv": "^16.4.5",
    "http-server": "^14.1.1",
    "memjs": "^1.3.2",
    "mongoose": "^8.2.0",
    "pg": "^8.11.3",
    "redis": "^4.6.13",
    "safe-stable-stringify": "^2.2.0",
    "stopwords-iso": "^1.1.0",
    "sylvester": "^0.0.12",
    "underscore": "^1.9.1",
    "uuid": "^9.0.1",
    "wordnet-db": "^3.1.11"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^25.0.8",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@types/jasmine": "^5.1.4",
    "@types/node": "^18.11.18",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "browserfs": "^1.4.3",
    "cross-env": "^7.0.3",
    "eslint": "^8.57.0",
    "eslint-config-standard-with-typescript": "^43.0.1",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-n": "^15.7.0",
    "eslint-plugin-promise": "^6.1.1",
    "gulp": "^4.0.2",
    "gulp-jasmine": "^4.0.0",
    "gulp-jasmine-browser": "^4.1.0",
    "jasmine": "^3.3.1",
    "jasmine-core": "^3.3.0",
    "lint": "^0.8.19",
    "ncp": "^2.0.0",
    "nyc": "^15.1.0",
    "pegjs": "^0.10.0",
    "proxyquire": "^1.8.0",
    "rimraf": "^2.6.3",
    "rollup": "^4.18.0",
    "sinon": "^1.12.2",
    "source-map-support": "^0.5.21",
    "standard": "^16.0.4",
    "ts-node": "^10.9.2",
    "ts-standard": "^12.0.2",
    "typescript": "^5.4.2",
    "uubench": "^0.0.1",
    "webpack": "^4.29.0",
    "webpack-stream": "^5.2.1"
  },
  "standard": {
    "ignore": [
      "/lib/natural/brill_pos_tagger/lib/TF_Parser.js",
      "/lib/natural/tokenizers/parser_sentence_tokenizer.js"
    ],
    "env": {
      "jasmine": true
    }
  },
  "jscpd": {
    "ignore": [
      "lib/natural/brill_pos_tagger/lib/TF_Parser.js",
      "lib/natural/tokenizers/parser_sentence_tokenizer.js"
    ]
  },
  "scripts": {
    "benchmark": "node benchmarks",
    "build": "npm run build:tests & npm run build:esm",
    "build:esm": "rollup -c",
    "build:tests": "tsc",
    "clean": "rimraf *~ #* *classifier.json dist io_spec/tmp/*.json coverage",
    "test_io": "jasmine --random=false io_spec/*_spec.js",
    "test": "cross-env NODE_PATH=. jasmine --random=false dist/cjs/spec/*_spec.js",
    "coverage": "nyc --no-clean npm run test && nyc --no-clean npm run test_io",
    "test_browser": "cross-env NODE_PATH=. node ./node_modules/gulp/bin/gulp.js",
    "lint": "eslint . --ext .ts"
  },
  "license": "MIT",
  "author": "Chris Umbel <chris@chrisumbel.com>",
  "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",
  "types": "./lib/natural/index.d.ts",
  "maintainers": [
    {
      "name": "Chris Umbel",
      "email": "chris@chrisumbel.com",
      "web": "http://www.chrisumbel.com"
    },
    {
      "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"
    }
  ]
}
