{
  "name": "node-nlp",
  "version": "2.2.2",
  "description": "Library for NLU (Natural Language Understanding) done in Node.js",
  "main": "lib/index.js",
  "scripts": {
    "commit": "git-cz",
    "coveralls": "jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
    "lint": "eslint .",
    "lintfix": "eslint --fix lib/**",
    "precommit": "lint-staged",
    "test": "eslint lib/** && jest --coverage --maxWorkers=4",
    "jsdoc": "jsdoc -r lib -d docs/static -R README.md"
  },
  "author": {
    "email": "jesus.seijas@axa.com",
    "name": "Jesus Seijas"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/axa-group/nlp.js.git"
  },
  "bugs": {
    "url": "https://github.com/axa-group/nlp.js/issues"
  },
  "maintainers": [
    {
      "email": "jesus.seijas@axa.com",
      "name": "Jesus Seijas"
    }
  ],
  "license": "MIT",
  "devDependencies": {
    "commitizen": "^3.0.4",
    "coveralls": "^3.0.2",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^5.8.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-config-prettier": "^3.1.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jest": "^22.0.0",
    "eslint-plugin-prettier": "^3.0.0",
    "husky": "^1.1.0",
    "jest": "^23.5.0",
    "jsdoc": "^3.5.5",
    "lint-staged": "^8.0.0",
    "merge": "^1.2.1",
    "prettier": "^1.14.3"
  },
  "dependencies": {
    "@microsoft/recognizers-text-suite": "1.1.3",
    "brain.js": "^1.4.7",
    "escodegen": "^1.10.0",
    "esprima": "^4.0.0",
    "franc": "^4.0.0",
    "handlebars": "^4.0.12",
    "microjob": "^0.4.0",
    "novel-segment": "^2.0.42",
    "xlsx": "^0.14.0"
  },
  "keywords": [
    "natural language processing",
    "artifical intelligence",
    "natural language understanding",
    "natural language generation",
    "NLP",
    "NLU",
    "NLG",
    "sentiment analysis",
    "classifier",
    "logistic regression",
    "Natural",
    "entity extraction",
    "named entity recognition",
    "chatbot",
    "bot"
  ],
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "jest": {
    "verbose": true,
    "testURL": "http://localhost/",
    "collectCoverageFrom": [
      "lib/**.js",
      "!lib/nlp/stemmers/**"
    ],
    "coverageDirectory": "coverage",
    "testEnvironment": "node"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ]
  }
}
