-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "kuromoji-js-dictionary",
"version": "1.0.0",
"description": "kuromoji.js dictionary generator",
"main": "index.js",
"scripts": {
"start": "./index.js --verbose",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -w -s -r 0",
"convert": "npm run xz && npm run euc && npm run tar",
"xz": "xz -dk ./neologd-seed/*.xz",
"tar": "find ./neologd-seed -name '*.csv' -exec sh -c 'tar -cvzf ./dict/neologd/$(basename '{}').tar.gz {}' \\;",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"dict": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontainer/kuromoji-js-dictionary.git"
},
"keywords": [
"kuromoji.js",
"dictionary"
],
"author": "frontainer",
"license": "MIT",
"bugs": {
"url": "https://github.com/frontainer/kuromoji-js-dictionary/issues"
},
"homepage": "https://github.com/frontainer/kuromoji-js-dictionary#readme",
"dependencies": {
"@oclif/command": "^1.4.6",
"@oclif/config": "^1.3.62",
"@oclif/plugin-help": "^1.2.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"iconv-lite": "^0.4.19",
"kuromoji": "^0.1.2",
"linebyline": "^1.3.0",
"rimraf": "^2.6.2",
"rxjs": "^5.5.8",
"tar": "^4.4.1"
},
"devDependencies": {
"conventional-changelog-cli": "^1.3.21"
}
}