{
	"name": "ml-classify-text",
	"version": "2.0.1",
	"description": "Text classification using n-grams and cosine similarity",
	"module": "./lib",
	"main": "./lib",
	"scripts": {
		"clean": "rimraf lib",
		"test": "jest --coverage",
		"test:watch": "jest --watchAll",
		"test:prod": "cross-env BABEL_ENV=production npm run test",
		"lint": "eslint src test",
		"build": "webpack --mode=production --config=webpack.config.js",
		"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
	},
	"files": [
		"lib"
	],
	"repository": {
		"type": "git",
		"url": "git+https://github.com/andreekeberg/ml-classify-text-js.git"
	},
	"keywords": [
		"text classification",
		"classification",
		"classify",
		"classifier",
		"machine learning",
		"machine",
		"learning",
		"ai",
		"artificial intelligence",
		"artificial",
		"intelligence",
		"n-gram",
		"n-grams",
		"cosine similarity",
		"cosine",
		"similarity",
		"confidence",
		"predict",
		"prediction",
		"model",
		"train"
	],
	"author": "André Ekeberg <hello@andreekeberg.se> (https://andreekeberg.se/en/)",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/andreekeberg/ml-classify-text-js/issues"
	},
	"homepage": "https://github.com/andreekeberg/ml-classify-text-js",
	"devDependencies": {
		"@babel/core": "^7.20.12",
		"@babel/plugin-transform-modules-amd": "^7.20.11",
		"@babel/plugin-transform-modules-commonjs": "^7.20.11",
		"@babel/plugin-transform-runtime": "^7.19.6",
		"@babel/polyfill": "^7.12.1",
		"@babel/preset-env": "^7.20.2",
		"@babel/register": "^7.18.9",
		"@babel/runtime": "^7.20.13",
		"@babel/runtime-corejs3": "^7.20.13",
		"babel-cli": "^6.26.0",
		"babel-eslint": "^10.1.0",
		"babel-loader": "^9.1.2",
		"babel-plugin-add-module-exports": "^1.0.4",
		"babel-polyfill": "^6.26.0",
		"babel-preset-env": "^1.7.0",
		"babel-preset-minify": "^0.5.2",
		"babel-runtime": "^6.26.0",
		"core-js": "^3.27.2",
		"cross-env": "^7.0.3",
		"eslint": "^8.33.0",
		"eslint-config-standard": "^17.0.0",
		"eslint-plugin-node": "^11.1.0",
		"jest": "^29.4.1",
		"jsdoc": "^4.0.0",
		"jsdoc-to-markdown": "^8.0.0",
		"rimraf": "^4.1.2",
		"webpack": "^5.75.0",
		"webpack-cli": "^5.0.1"
	},
	"dependencies": {
		"xregexp": "^5.1.1"
	}
}
