forked from hotoo/pinyin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 903 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
41
42
43
44
{
"name": "pinyin",
"version": "2.3.2",
"description": "汉语拼音转换工具。",
"keywords": ["拼音", "Pinyin"],
"homepage": "http://pinyin.hotoo.me/",
"author": "闲耘 <[email protected]>",
"main": "index.js",
"bin": {
"pinyin": "./bin/pinyin"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/hotoo/pinyin.git"
},
"bugs": {
"url": "https://github.com/hotoo/pinyin/issues"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"segment": "0.0.5",
"commander": "~1.1.1"
},
"devDependencies": {
"mocha": "1.17.1",
"expect.js": "0.3.1",
"iconv": "2.1.0",
"request": "2.33.0"
},
"spm": {
"main": "index.js",
"devDependencies": {
"expect.js": "0.3.1"
},
"tests": "tests/*-spec.js"
},
"license": "MIT"
}