-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 975 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
35
36
37
38
39
40
{
"name": "pinyin-convert",
"version": "1.0.8",
"description": "Convert Hanzi to Pinyin and convert between Pinyin with tone marks and Pinyin with tone numbers.",
"keywords": [
"chinese",
"convert",
"hanzi",
"mandarin",
"pinyin"
],
"homepage": "https://github.com/pepebecker/pinyin-convert#readme",
"bugs": {
"url": "https://github.com/pepebecker/pinyin-convert/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pepebecker/pinyin-convert.git"
},
"license": "MIT",
"author": "Pepe Becker <[email protected]> (http://pepebecker.com)",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 20000"
},
"dependencies": {
"hanzi-to-pinyin": "^1.19.0",
"pinyin-or-hanzi": "^1.16.0",
"pinyin-split": "^1.27.0",
"pinyin-utils": "^1.14.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"should": "^13.2.3"
},
"engines": {
"node": "*",
"npm": "~4.2.0"
}
}