Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit706c8af

Browse files
committed
Update package dependencies and scripts
1 parent6797789 commit706c8af

File tree

1 file changed

+83
-88
lines changed

1 file changed

+83
-88
lines changed

‎package.json‎

Lines changed: 83 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,85 @@
11
{
2-
"name":"ml-classify-text",
3-
"version":"2.0.0",
4-
"description":"Text classification using n-grams and cosine similarity",
5-
"module":"./lib",
6-
"main":"./lib",
7-
"scripts": {
8-
"clean":"rimraf lib",
9-
"test":"npm run lint && npm run cover",
10-
"test:prod":"cross-env BABEL_ENV=production npm run test",
11-
"test:only":"mocha --require @babel/register --require @babel/core --recursive",
12-
"test:watch":"npm test -- --watch",
13-
"cover":"nyc --check-coverage npm run test:only",
14-
"lint":"eslint src test",
15-
"build":"webpack --mode=production --no-progress --hide-modules --config=webpack.config.js",
16-
"prepublish":"npm run clean && npm run lint && npm run test && npm run build"
17-
},
18-
"files": [
19-
"lib",
20-
"src"
21-
],
22-
"repository": {
23-
"type":"git",
24-
"url":"git+https://github.com/andreekeberg/ml-classify-text-js.git"
25-
},
26-
"keywords": [
27-
"text classification",
28-
"classification",
29-
"classify",
30-
"classifier",
31-
"machine learning",
32-
"machine",
33-
"learning",
34-
"ai",
35-
"artificial intelligence",
36-
"artificial",
37-
"intelligence",
38-
"n-gram",
39-
"n-grams",
40-
"cosine similarity",
41-
"cosine",
42-
"similarity",
43-
"confidence",
44-
"predict",
45-
"prediction",
46-
"model",
47-
"train"
48-
],
49-
"author":"André Ekeberg <hello@andreekeberg.se> (https://andreekeberg.se/en/)",
50-
"license":"MIT",
51-
"bugs": {
52-
"url":"https://github.com/andreekeberg/ml-classify-text-js/issues"
53-
},
54-
"homepage":"https://github.com/andreekeberg/ml-classify-text-js",
55-
"devDependencies": {
56-
"@babel/core":"^7.10.4",
57-
"@babel/plugin-transform-modules-amd":"^7.10.5",
58-
"@babel/plugin-transform-modules-commonjs":"^7.6.0",
59-
"@babel/plugin-transform-runtime":"^7.6.2",
60-
"@babel/polyfill":"^7.10.4",
61-
"@babel/preset-env":"^7.8.3",
62-
"@babel/register":"^7.10.4",
63-
"@babel/runtime":"^7.6.2",
64-
"@babel/runtime-corejs3":"^7.6.2",
65-
"babel-cli":"^6.26.0",
66-
"babel-eslint":"^10.0.1",
67-
"babel-loader":"^8.0.6",
68-
"babel-plugin-add-module-exports":"^1.0.2",
69-
"babel-polyfill":"^6.26.0",
70-
"babel-preset-env":"^1.6.1",
71-
"babel-preset-minify":"^0.5.0",
72-
"babel-runtime":"^6.26.0",
73-
"chai":"^4.1.2",
74-
"core-js":"^3.2.1",
75-
"cross-env":"^5.2.1",
76-
"eslint":"^5.16.0",
77-
"eslint-config-standard":"^14.1.1",
78-
"eslint-plugin-node":"^11.1.0",
79-
"jsdoc":"^3.6.5",
80-
"jsdoc-to-markdown":"^6.0.1",
81-
"mocha":"^6.1.3",
82-
"nyc":"^13.3.0",
83-
"rimraf":"^2.6.2",
84-
"webpack":"^4.40.2",
85-
"webpack-cli":"^3.3.9"
86-
},
87-
"dependencies": {
88-
"xregexp":"^4.3.0"
89-
}
2+
"name":"ml-classify-text",
3+
"version":"2.0.0",
4+
"description":"Text classification using n-grams and cosine similarity",
5+
"module":"./lib",
6+
"main":"./lib",
7+
"scripts": {
8+
"clean":"rimraf lib",
9+
"test":"jest --coverage",
10+
"test:watch":"jest --watchAll",
11+
"test:prod":"cross-env BABEL_ENV=production npm run test",
12+
"lint":"eslint src test",
13+
"build":"webpack --mode=production --config=webpack.config.js",
14+
"prepublish":"npm run clean && npm run lint && npm run test && npm run build"
15+
},
16+
"files": [
17+
"lib"
18+
],
19+
"repository": {
20+
"type":"git",
21+
"url":"git+https://github.com/andreekeberg/ml-classify-text-js.git"
22+
},
23+
"keywords": [
24+
"text classification",
25+
"classification",
26+
"classify",
27+
"classifier",
28+
"machine learning",
29+
"machine",
30+
"learning",
31+
"ai",
32+
"artificial intelligence",
33+
"artificial",
34+
"intelligence",
35+
"n-gram",
36+
"n-grams",
37+
"cosine similarity",
38+
"cosine",
39+
"similarity",
40+
"confidence",
41+
"predict",
42+
"prediction",
43+
"model",
44+
"train"
45+
],
46+
"author":"André Ekeberg <hello@andreekeberg.se> (https://andreekeberg.se/en/)",
47+
"license":"MIT",
48+
"bugs": {
49+
"url":"https://github.com/andreekeberg/ml-classify-text-js/issues"
50+
},
51+
"homepage":"https://github.com/andreekeberg/ml-classify-text-js",
52+
"devDependencies": {
53+
"@babel/core":"^7.20.12",
54+
"@babel/plugin-transform-modules-amd":"^7.20.11",
55+
"@babel/plugin-transform-modules-commonjs":"^7.20.11",
56+
"@babel/plugin-transform-runtime":"^7.19.6",
57+
"@babel/polyfill":"^7.12.1",
58+
"@babel/preset-env":"^7.20.2",
59+
"@babel/register":"^7.18.9",
60+
"@babel/runtime":"^7.20.13",
61+
"@babel/runtime-corejs3":"^7.20.13",
62+
"babel-cli":"^6.26.0",
63+
"babel-eslint":"^10.1.0",
64+
"babel-loader":"^9.1.2",
65+
"babel-plugin-add-module-exports":"^1.0.4",
66+
"babel-polyfill":"^6.26.0",
67+
"babel-preset-env":"^1.7.0",
68+
"babel-preset-minify":"^0.5.2",
69+
"babel-runtime":"^6.26.0",
70+
"core-js":"^3.27.2",
71+
"cross-env":"^7.0.3",
72+
"eslint":"^8.33.0",
73+
"eslint-config-standard":"^17.0.0",
74+
"eslint-plugin-node":"^11.1.0",
75+
"jest":"^29.4.1",
76+
"jsdoc":"^4.0.0",
77+
"jsdoc-to-markdown":"^8.0.0",
78+
"rimraf":"^4.1.2",
79+
"webpack":"^5.75.0",
80+
"webpack-cli":"^5.0.1"
81+
},
82+
"dependencies": {
83+
"xregexp":"^5.1.1"
84+
}
9085
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp