forked from hotoo/pinyin
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 782 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 782 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
{
"name": "node-pinyin",
"version": "0.2.3",
"description": "汉语拼音转换工具。",
"keywords": [
"拼音",
"Pinyin"
],
"author": "TooBug <i@toobug.net>",
"main": "index.js",
"bin": {
"pinyin": "./bin/pinyin"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/toobug/pinyin.git"
},
"bugs": {
"url": "https://github.com/toobug/pinyin/issues"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./tests/*.js",
"test-cov": "./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha ./tests/*.js"
},
"dependencies": {
"commander": "~1.1.1"
},
"devDependencies": {
"mocha": "^2.0.1",
"should": "^4.4.1"
},
"license": "MIT"
}