{"_id":"kuromoji","_rev":"16-024b8c379b1044dd1e4ec2888cbe715a","name":"kuromoji","time":{"modified":"2022-06-19T10:08:01.793Z","created":"2014-12-01T10:22:51.728Z","0.0.1":"2014-12-01T10:22:51.728Z","0.0.2":"2014-12-04T09:01:56.836Z","0.0.3":"2015-09-06T11:57:53.615Z","0.0.4":"2015-09-06T16:47:47.804Z","0.0.5":"2015-11-18T17:08:02.127Z","0.1.0":"2016-08-06T15:21:35.486Z","0.1.1":"2016-08-07T06:20:22.149Z","0.1.2":"2018-03-19T15:21:31.607Z"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist-tags":{"latest":"0.1.2"},"description":"JavaScript implementation of Japanese morphological analyzer","readme":"kuromoji.js\n===========\n\n[![Build Status](https://travis-ci.org/takuyaa/kuromoji.js.svg?branch=master)](https://travis-ci.org/takuyaa/kuromoji.js)\n[![Coverage Status](https://coveralls.io/repos/github/takuyaa/kuromoji.js/badge.svg?branch=master)](https://coveralls.io/github/takuyaa/kuromoji.js?branch=master)\n[![npm version](https://badge.fury.io/js/kuromoji.svg)](http://badge.fury.io/js/kuromoji)\n[![Bower version](https://badge.fury.io/bo/kuromoji.svg)](http://badge.fury.io/bo/kuromoji)\n[![dependencies](https://david-dm.org/takuyaa/kuromoji.js.svg)](https://david-dm.org/takuyaa/kuromoji.js)\n[![Code Climate](https://codeclimate.com/github/takuyaa/kuromoji.js/badges/gpa.svg)](https://codeclimate.com/github/takuyaa/kuromoji.js)\n[![Downloads](https://img.shields.io/npm/dm/kuromoji.svg)](https://www.npmjs.com/package/kuromoji)\n\nJavaScript implementation of Japanese morphological analyzer.\nThis is a pure JavaScript porting of [Kuromoji](http://www.atilika.com/ja/products/kuromoji.html).\n\nYou can see how kuromoji.js works in [demo site](http://takuyaa.github.io/kuromoji.js/demo/tokenize.html).\n\n\nDirectory\n---------\n\nDirectory tree is as follows:\n\n    build/\n      kuromoji.js -- JavaScript file for browser (Browserified)\n    demo/         -- Demo\n    dict/         -- Dictionaries for tokenizer (gzipped)\n    example/      -- Examples to use in Node.js\n    src/          -- JavaScript source\n    test/         -- Unit test\n\n\nUsage\n-----\n\nYou can tokenize sentences with only 5 lines of code.\nIf you need working examples, you can see the files under the demo or example directory.\n\n\n### Node.js\n\nInstall with npm package manager:\n\n    npm install kuromoji\n\nLoad this library as follows:\n\n    var kuromoji = require(\"kuromoji\");\n\nYou can prepare tokenizer like this:\n\n    kuromoji.builder({ dicPath: \"path/to/dictionary/dir/\" }).build(function (err, tokenizer) {\n        // tokenizer is ready\n        var path = tokenizer.tokenize(\"すもももももももものうち\");\n        console.log(path);\n    });\n\n\n\n### Browser\n\nYou only need the build/kuromoji.js and dict/*.dat.gz files\n\nInstall with Bower package manager:\n\n    bower install kuromoji\n\nOr you can use the kuromoji.js file and dictionary files from the GitHub repository.\n\nIn your HTML:\n\n    <script src=\"url/to/kuromoji.js\"></script>\n\nIn your JavaScript:\n\n    kuromoji.builder({ dicPath: \"/url/to/dictionary/dir/\" }).build(function (err, tokenizer) {\n        // tokenizer is ready\n        var path = tokenizer.tokenize(\"すもももももももものうち\");\n        console.log(path);\n    });\n\n\nAPI\n---\n\nThe function tokenize() returns an JSON array like this:\n\n    [ {\n        word_id: 509800,          // 辞書内での単語ID\n        word_type: 'KNOWN',       // 単語タイプ(辞書に登録されている単語ならKNOWN, 未知語ならUNKNOWN)\n        word_position: 1,         // 単語の開始位置\n        surface_form: '黒文字',    // 表層形\n        pos: '名詞',               // 品詞\n        pos_detail_1: '一般',      // 品詞細分類1\n        pos_detail_2: '*',        // 品詞細分類2\n        pos_detail_3: '*',        // 品詞細分類3\n        conjugated_type: '*',     // 活用型\n        conjugated_form: '*',     // 活用形\n        basic_form: '黒文字',      // 基本形\n        reading: 'クロモジ',       // 読み\n        pronunciation: 'クロモジ'  // 発音\n      } ]\n\n(This is defined in src/util/IpadicFormatter.js)\n\nSee also [JSDoc page](https://takuyaa.github.io/kuromoji.js/jsdoc/) in details.\n","versions":{"0.0.2":{"name":"kuromoji","version":"0.0.2","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"description":"JavaScript implementation of Japanese morphological analyzer","main":"./dist/node/kuromoji.js","keywords":["morphological analyzer","tokenizer","japanese","pos","pos tagger","nlp"],"license":"Apache-2.0","homepage":"https://github.com/takuyaa/kuromoji.js","repository":{"type":"git","url":"https://github.com/takuyaa/kuromoji.js.git"},"scripts":{"test":"mocha -R spec --recursive"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"dependencies":{"async":"^0.9.0","doublearray":"0.0.2","zlibjs":"^0.2.0"},"devDependencies":{"browserify":"^6.3.2","chai":"^1.10.0","event-stream":"^3.1.7","gulp":"^3.8.10","gulp-clean":"^0.3.1","gulp-gunzip":"0.0.2","gulp-gzip":"0.0.8","gulp-istanbul":"^0.3.1","gulp-jsdoc":"^0.1.4","gulp-jshint":"^1.9.0","gulp-mocha":"^2.0.0","gulp-remote-src":"^0.3.0","gulp-sourcemaps":"^1.2.8","gulp-util":"^3.0.1","gulp-webserver":"^0.8.7","jconv":"^0.1.5","run-sequence":"^1.0.1","vinyl-source-stream":"^1.0.0"},"_id":"kuromoji@0.0.2","dist":{"shasum":"994383cc82bbab8617669d44120d9e7a19f67874","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.0.2.tgz","integrity":"sha512-6C4mP6HzVsmbX49C9j2I7RI4McEpm6imz7m3fgDRiMEqMpEEG8Hf3v7uxU3l2gMrl/8s8t/7ziPbLx17Wzu9YQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwWly5kFEkhvqqDIOgaACdcRVzV4Nsyo9sHSEP/5w0VgIgXEt4iTbQAuIJ9PAO83umYXE+eAZKnLibrHqY0H44RHo="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"directories":{}},"0.0.3":{"name":"kuromoji","version":"0.0.3","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"description":"JavaScript implementation of Japanese morphological analyzer","main":"./dist/node/kuromoji.js","keywords":["morphological analyzer","tokenizer","japanese","pos","pos tagger","nlp"],"license":"Apache-2.0","homepage":"https://github.com/takuyaa/kuromoji.js","repository":{"type":"git","url":"https://github.com/takuyaa/kuromoji.js.git"},"scripts":{"test":"mocha -R spec --recursive"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"dependencies":{"async":"^0.9.0","doublearray":"0.0.2","zlibjs":"^0.2.0"},"devDependencies":{"browserify":"^6.3.2","chai":"^1.10.0","coveralls":"^2.11.2","event-stream":"^3.1.7","gulp":"^3.8.10","gulp-clean":"^0.3.1","gulp-gunzip":"0.0.2","gulp-gzip":"0.0.8","gulp-istanbul":"^0.3.1","gulp-jsdoc":"^0.1.4","gulp-jshint":"^1.9.0","gulp-mocha":"^2.0.0","gulp-remote-src":"^0.3.0","gulp-sourcemaps":"^1.2.8","gulp-util":"^3.0.1","gulp-webserver":"^0.8.7","jconv":"^0.1.5","run-sequence":"^1.0.1","vinyl-source-stream":"^1.0.0"},"gitHead":"d2e34f19ae245abf78a1bd4d3c5b457a98c9217d","_id":"kuromoji@0.0.3","_shasum":"e38c43ade284f12677154afc3a82df4bbfcfaf5a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"shasum":"e38c43ade284f12677154afc3a82df4bbfcfaf5a","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.0.3.tgz","integrity":"sha512-3HPuiGhdpKWpusF0i3qH748FGSnbAaCwLTtmr1V3txHdxIN3GRq625Y5DgYrtHYlmSx2zNp3MPNgNXsczpK8tw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDxwSBvOJ58Y2H8LdHn9lhQ1SIqMRtx3GMOfnx9JRHckgIhAPmxpKA9KDLyOVPTk0RpGALslo/42hWzurb1Q1pdAXJu"}]},"directories":{}},"0.0.4":{"name":"kuromoji","version":"0.0.4","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"description":"JavaScript implementation of Japanese morphological analyzer","main":"./dist/node/kuromoji.js","keywords":["morphological analyzer","tokenizer","japanese","pos","pos tagger","nlp"],"license":"Apache-2.0","homepage":"https://github.com/takuyaa/kuromoji.js","repository":{"type":"git","url":"https://github.com/takuyaa/kuromoji.js.git"},"scripts":{"test":"mocha -R spec --recursive"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"dependencies":{"async":"^1.4.0","doublearray":"0.0.2","zlibjs":"^0.2.0"},"devDependencies":{"browserify":"^11.0.1","chai":"^3.2.0","coveralls":"^2.11.2","event-stream":"^3.1.7","gulp":"^3.8.10","gulp-clean":"^0.3.1","gulp-gunzip":"0.0.3","gulp-gzip":"^1.2.0","gulp-istanbul":"^0.10.0","gulp-jsdoc":"^0.1.4","gulp-jshint":"^1.9.0","gulp-mocha":"^2.0.0","gulp-remote-src":"^0.3.0","gulp-sourcemaps":"^1.2.8","gulp-util":"^3.0.1","gulp-webserver":"^0.9.1","jconv":"^0.1.5","mocha":"^2.2.5","run-sequence":"^1.0.1","vinyl-source-stream":"^1.0.0"},"gitHead":"e69d21a4d9181f73261472953a46ad1b862da860","_id":"kuromoji@0.0.4","_shasum":"f4c6089428dd7e5fab20d6860a6cdb9369b85257","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"shasum":"f4c6089428dd7e5fab20d6860a6cdb9369b85257","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.0.4.tgz","integrity":"sha512-FZKGuRcAa4zlXoZZTX/ac28ewTQUyK9dRy2JMOYs9jztJDO/nrd4f3JJ0kOlRduCW+jcpqwtky2h07VhvljuQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLg71VhhMxpZL4QacQU+x5f5Mw92eqa0hdZTsx8jII+AIgEpljqB82VaukKaHPPqGJKnypNsTdVRBFi0PU9ZIFBWg="}]},"directories":{}},"0.0.5":{"name":"kuromoji","version":"0.0.5","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"description":"JavaScript implementation of Japanese morphological analyzer","main":"./dist/node/kuromoji.js","browser":{"./dist/node/loader/NodeDictionaryLoader.js":"./dist/node/loader/BrowserDictionaryLoader.js"},"keywords":["morphological analyzer","tokenizer","japanese","pos","pos tagger","nlp"],"license":"Apache-2.0","homepage":"https://github.com/takuyaa/kuromoji.js","repository":{"type":"git","url":"https://github.com/takuyaa/kuromoji.js.git"},"scripts":{"test":"mocha -R spec --recursive"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"dependencies":{"async":"^1.4.0","doublearray":"0.0.2","zlibjs":"^0.2.0"},"devDependencies":{"browserify":"^11.0.1","chai":"^3.2.0","coveralls":"^2.11.2","event-stream":"^3.1.7","gulp":"^3.8.10","gulp-clean":"^0.3.1","gulp-gunzip":"0.0.3","gulp-gzip":"^1.2.0","gulp-istanbul":"^0.10.0","gulp-jsdoc":"^0.1.4","gulp-jshint":"^1.9.0","gulp-mocha":"^2.0.0","gulp-remote-src":"^0.3.0","gulp-sourcemaps":"^1.2.8","gulp-util":"^3.0.1","gulp-webserver":"^0.9.1","jconv":"^0.1.5","mocha":"^2.2.5","run-sequence":"^1.0.1","vinyl-source-stream":"^1.0.0"},"gitHead":"75943a3e12c7f8f19a4fe34688274fd42ce33de4","_id":"kuromoji@0.0.5","_shasum":"0c11621944aa3739058484eae67eb1e736daa4d3","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"shasum":"0c11621944aa3739058484eae67eb1e736daa4d3","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.0.5.tgz","integrity":"sha512-F9U7Jd95bljfxcY1LS82oKRAD9CxQ0EZ1V/VXYjesMoXBAxpoqT8OZMS37GVPicpfwiXTGPjEbT5VYU9fItAJA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDoEGI6tXcSQ769ZDkTegk2tvvg04AH933urP9m1SIJ6AiEA1s7NOInRRJpoNE4siwPDfYnewj91C0/nWmIVjZB/EA0="}]},"directories":{}},"0.1.0":{"name":"kuromoji","description":"JavaScript implementation of Japanese morphological analyzer","version":"0.1.0","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"browser":{"./dist/node/loader/NodeDictionaryLoader.js":"./dist/node/loader/BrowserDictionaryLoader.js"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"dependencies":{"async":"^2.0.1","doublearray":"0.0.2","zlibjs":"^0.2.0"},"devDependencies":{"browserify":"^13.1.0","chai":"^3.2.0","coveralls":"^2.11.2","del":"^2.2.1","gulp":"^3.8.10","gulp-bower":"0.0.13","gulp-bump":"^2.2.0","gulp-conventional-changelog":"^1.1.0","gulp-gh-pages":"^0.5.4","gulp-git":"^1.11.0","gulp-gzip":"^1.2.0","gulp-istanbul":"^1.0.0","gulp-jsdoc":"^0.1.4","gulp-jshint":"^2.0.1","gulp-mocha":"^3.0.0","gulp-sourcemaps":"^1.2.8","gulp-webserver":"^0.9.1","mecab-ipadic-seed":"0.0.2","minimist":"^1.2.0","mocha-lcov-reporter":"^1.2.0","run-sequence":"^1.0.1","vinyl-source-stream":"^1.1.0"},"homepage":"https://github.com/takuyaa/kuromoji.js","keywords":["japanese","morphological analyzer","nlp","pos","pos tagger","tokenizer"],"license":"Apache-2.0","main":"./dist/node/kuromoji.js","repository":{"type":"git","url":"git+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"},"gitHead":"9437a526c4b29f2c8db4d2daa34de173b08644f0","_id":"kuromoji@0.1.0","_shasum":"733e075429f8e67007b1dd18ba090c80044da5d2","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"shasum":"733e075429f8e67007b1dd18ba090c80044da5d2","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.0.tgz","integrity":"sha512-Nlryodr52fZ6zloOz4lOTH70vbl4jYLZP5BSuf8ljXHQtLNidMBV8wrE1lvw1SYosWlpsYJBZx2ZDbRwXDba0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0OSmUomFtkPx0D8biEfJA9jFeJX2/eGSJG+Wo4RcWIAIhALk62+T4/JtqPxA34ExhPMA0ILGKQOFMjMgX97LhP4Xl"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/kuromoji-0.1.0.tgz_1470496887275_0.5846772841177881"},"directories":{}},"0.1.1":{"name":"kuromoji","description":"JavaScript implementation of Japanese morphological analyzer","version":"0.1.1","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"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.2.0"},"devDependencies":{"browserify":"^13.1.0","chai":"^3.2.0","coveralls":"^2.11.2","del":"^2.2.1","event-stream":"^3.3.4","gulp":"^3.8.10","gulp-bower":"0.0.13","gulp-bump":"^2.2.0","gulp-conventional-changelog":"^1.1.0","gulp-gh-pages":"^0.5.4","gulp-git":"^1.11.0","gulp-gzip":"^1.2.0","gulp-istanbul":"^1.0.0","gulp-jsdoc":"^0.1.4","gulp-jshint":"^2.0.1","gulp-mocha":"^3.0.0","gulp-webserver":"^0.9.1","mecab-ipadic-seed":"0.0.2","minimist":"^1.2.0","mocha-lcov-reporter":"^1.2.0","run-sequence":"^1.0.1","vinyl-source-stream":"^1.1.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":"git+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"},"gitHead":"cb94046f39ba7b8152aeada9106f0ff22047e6d2","_id":"kuromoji@0.1.1","_shasum":"4aabf39bcced8b8ad92d007a04a26be6da8477c9","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"shasum":"4aabf39bcced8b8ad92d007a04a26be6da8477c9","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.1.tgz","integrity":"sha512-B7ctEuhoYzRDbgsRn/3NQVee/Q4WRFVuCxkYtnQLl+t/5tw2f7JL0GQH/CQQ3gqlaEvBJgfnGNA6st09wmqkRA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDuJPEf1zzuJAqPh3G7vyBMFV+28FtxMBk/14xc1vUcUQIgCACE9DoAnk8xC56+lk7Xs/tvzbRNXkBae5CRgWyCB6c="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/kuromoji-0.1.1.tgz_1470550813262_0.7050961616914719"},"directories":{}},"0.1.2":{"name":"kuromoji","description":"JavaScript implementation of Japanese morphological analyzer","version":"0.1.2","author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"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":"^0.5.4","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":"git+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"},"gitHead":"d0357c1427acb912815fc8ab59f284dd08bad0fa","_id":"kuromoji@0.1.2","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"takuyaa","email":"takuya.a@gmail.com"},"maintainers":[{"name":"takuyaa","email":"takuya.a@gmail.com"}],"dist":{"integrity":"sha512-V0dUf+C2LpcPEXhoHLMAop/bOht16Dyr+mDiIE39yX3vqau7p80De/koFqpiTcL1zzdZlc3xuHZ8u5gjYRfFaQ==","shasum":"293f0d6706df006112137980588d5daac26d0790","tarball":"https://registry.npmjs.org/kuromoji/-/kuromoji-0.1.2.tgz","fileCount":63,"unpackedSize":41263301,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7a3XkAKLiW5jVerMJULfpu675d/xM8QDs4Sd8eaSOswIgGY8qEm379TAY82zVZ2mobxmk9KntEGVg9dN9QqmxiKQ="}]},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/kuromoji_0.1.2_1521472890542_0.3772029914611512"},"_hasShrinkwrap":false}},"homepage":"https://github.com/takuyaa/kuromoji.js","keywords":["japanese","morphological analyzer","nlp","pos","pos tagger","tokenizer"],"repository":{"type":"git","url":"git+https://github.com/takuyaa/kuromoji.js.git"},"author":{"name":"Takuya Asano","email":"takuya.a@gmail.com"},"bugs":{"url":"https://github.com/takuyaa/kuromoji.js/issues"},"license":"Apache-2.0","readmeFilename":"README.md","users":{"ovrmrw":true,"daskepon":true}}