-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 873 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
{
"name": "pinyin-to-zhuyin",
"version": "0.0.0",
"description": "Takes zhuyin (AKA \"bo po mo fo\") and converts it into pinyin.",
"main": "pinyin-to-zhuyin.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
},
"bin": {
"p2z": "./p2z.js",
"p2z-stream": "./p2z-stream.js"
},
"repository": {
"type": "git",
"url": "git://github.com/logicmason/pinyin-to-zhuyin.git"
},
"dependencies": {
"lodash": "^2.4.1"
},
"keywords": [
"zhuyin",
"pinyin",
"converter"
],
"author": "Mark Wilbur",
"license": "MIT",
"bugs": {
"url": "https://github.com/logicmason/pinyin-to-zhuyin/issues"
},
"homepage": "https://github.com/mlogicmason/pinyin-to-zhuyin",
"devDependencies": {
"lodash": "^2.4.1",
"chai": "^1.9.1",
"istanbul": "^0.3.0",
"mocha": "^1.21.4"
}
}