-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "kuromoji",
"description": "JavaScript implementation of Japanese morphological analyzer",
"version": "0.1.2",
"author": "Takuya Asano <[email protected]>",
"browser": {
"./src/loader/NodeDictionaryLoader.js": "./src/loader/BrowserDictionaryLoader.js"
},
"bugs": {
"url": "https://github.com/takuyaa/kuromoji.js/issues"
},
"dependencies": {
"async": "^2.0.1",
"doublearray": "0.0.2",
"zlibjs": "^0.3.1"
},
"devDependencies": {
"browserify": "^16.1.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"event-stream": "^3.3.4",
"gulp": "^3.8.10",
"gulp-bower": "0.0.14",
"gulp-bump": "^3.1.0",
"gulp-conventional-changelog": "^1.1.0",
"gulp-gh-pages-will": "^0.5.5",
"gulp-git": "^2.5.2",
"gulp-gzip": "^1.2.0",
"gulp-istanbul": "^1.0.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^5.0.0",
"gulp-webserver": "^0.9.1",
"jshint": "^2.9.5",
"mecab-ipadic-seed": "0.0.2",
"minimist": "^1.2.0",
"mocha-lcov-reporter": "^1.2.0",
"run-sequence": "^2.2.1",
"vinyl-source-stream": "^2.0.0"
},
"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": "gulp build",
"build-demo": "gulp build-demo",
"build-dict": "gulp build-dict",
"clean": "gulp clean",
"coverage": "gulp coverage",
"deploy": "gulp deploy",
"jsdoc": "gulp jsdoc",
"lint": "gulp lint",
"release": "gulp release",
"test": "gulp test",
"version": "gulp version",
"watch": "gulp watch",
"webserver": "gulp webserver"
}
}