forked from xissy/node-mecab-ffi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 856 Bytes
/
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
{
"name": "mecab-ffi",
"version": "0.2.0",
"author": {
"name": "Taeho Kim",
"email": "xissysnd@gmail.com"
},
"main": "./index",
"dependencies": {
"coffee-script": ">= 1.8.0",
"async": ">= 0.2.9",
"ffi": ">= 1.2.5",
"ref": ">= 0.1.3"
},
"readmeFilename": "README.md",
"description": "A node.js module for binding MeCab asynchronously using foreign function interface.",
"repository": {
"type": "git",
"url": "https://github.com/xissy/node-mecab-ffi.git"
},
"bugs": {
"url": "https://github.com/xissy/node-mecab-ffi/issues"
},
"devDependencies": {
"should": ">= 1.0.0",
"mocha": ">= 1.3.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script --require coffee-script/register --globals lw --recursive ./test -t 10000"
}
}