forked from takuyaa/kuromoji.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "kuromoji",
"description": "JavaScript implementation of Japanese morphological analyzer",
"version": "0.1.2",
"author": "Takuya Asano <takuya.a@gmail.com>",
"bugs": {
"url": "https://github.com/takuyaa/kuromoji.js/issues"
},
"dependencies": {
"doublearray": "0.0.2",
"express": "^4.17.1",
"mecab-ipadic-seed": "github:mirigana/mecab-ipadic-seed#v0.0.11"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"homepage": "https://github.com/takuyaa/kuromoji.js",
"keywords": [
"japanese",
"morphological analyzer",
"nlp",
"pos",
"pos tagger",
"tokenizer"
],
"license": "Apache-2.0",
"main": "./src/kuromoji.js",
"repository": {
"type": "git",
"url": "https://github.com/takuyaa/kuromoji.js.git"
},
"scripts": {
"build-dict": "node scripts/build-mecab-ipadic.js",
"build": "webpack",
"test": "mocha --recursive test",
"webserver": "node webserver"
}
}