-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "pinyin-rest",
"version": "1.0.2",
"description": "REST API to convert Chinese to Pinyin with tone marks or tone numbers.",
"keywords": [
"api",
"cangjie",
"chinese",
"hanzi",
"mandarin",
"pinyin",
"rest"
],
"homepage": "https://github.com/pepebecker/pinyin-rest#readme",
"bugs": {
"url": "https://github.com/pepebecker/pinyin-rest/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pepebecker/pinyin-rest.git"
},
"license": "MIT",
"author": "Pepe Becker <[email protected]> (https://pepe.asia)",
"bin": "index.js",
"main": "index.js",
"scripts": {
"deploy": "pm2 deploy ecosystem.config.js production",
"start": "node index.js",
"watch": "nodemon index.js"
},
"dependencies": {
"corser": "^2.0.1",
"express": "^4.17.1",
"hanzi-to-zhuyin": "^1.7.0",
"ip": "^1.1.5",
"mdbg": "^1.55.0",
"pinyin-convert": "^1.11.0",
"pinyin-or-hanzi": "^1.55.0",
"pinyin-split": "^1.69.0",
"zhuyin": "^1.11.0"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}