-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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 <[email protected]> (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"
}
}