-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 778 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 778 Bytes
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
{
"name": "hanzi-tools",
"version": "1.2.27",
"author": "Peter Olson <peter.e.c.olson+npm@gmail.com>",
"description": "Converts from Chinese characters to pinyin, between simplified and traditional, and does word segmentation.",
"license": "Unlicense",
"main": "./index",
"repository": {
"type": "git",
"url": "git@github.com:peterolson/pinyinify.git"
},
"scripts": {
"test": "jasmine"
},
"keywords": [
"pinyin",
"chinese",
"simplified",
"traditional",
"convert",
"segment",
"汉字",
"拼音",
"简体",
"繁体",
"分词"
],
"dependencies": {
"nodejieba": "^3.5.2",
"pinyin": "^4.0.0"
},
"devDependencies": {
"jasmine": "^2.99.0"
},
"engines": {
"node": ">=6.0.0"
}
}