-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.16 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
46
47
48
49
50
{
"name": "zhuyin-improved",
"version": "1.0.7",
"description": "Convert Zhuyin to Pinyin",
"keywords": [
"chinese",
"mandarin",
"pinyin",
"zhuyin",
"中文",
"拼音",
"注音"
],
"homepage": "https://github.com/nick1092387456/zhuyin-improved",
"bugs": {
"url": "https://github.com/nick1092387456/zhuyin-improved/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nick1092387456/zhuyin-improved.git"
},
"license": "ISC",
"author": "Bumble",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"prepublish": "npm run tsc",
"test": "env TS_NODE_PROJECT=tsconfig-testing.json mocha -r ts-node/register tests/**/*.spec.ts",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
},
"dependencies": {
"pinyin-split": "^1.170.0",
"pinyin-utils": "^2.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"directories": {
"lib": "lib"
}
}