-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 808 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
{
"name": "romanize-names",
"version": "2.0.0",
"description": "Romanizing Chinese names.",
"main": "index.js",
"scripts": {
"tape": "node test/test.js | tap-spec",
"test": "standard && npm run tape"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muan/romanize-names.git"
},
"keywords": [
"romanize",
"unihan",
"chinese",
"mandarin"
],
"author": "Mu-An Chiou <me@muanchiou.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/muan/romanize-names/issues"
},
"homepage": "https://github.com/muan/romanize-names#readme",
"dependencies": {
"diacritics": "^1.2.2",
"unicode-mandarin-readings": "^1.0.0"
},
"devDependencies": {
"standard": "^5.1.1",
"tap-spec": "~1.0.1",
"tape": "~3.0.1"
}
}