-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
51
52
53
54
{
"name": "cantonese-romanisation",
"version": "1.0.7",
"description": "Library for mapping Chinese character to Hong Kong Government Cantonese Romanisation, Pingyam (Yale or LSHK)",
"main": "dist/index.js",
"module": "esm/index.js",
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"clean": "rimraf dist",
"update-dict": "ts-node dictionary/parse.ts",
"test": "jest",
"prebuild": "yarn clean && yarn update-dict && yarn test",
"build:esm": "tsc --target es2018 --outDir esm",
"build:cjs": "tsc --target es2015 --module commonjs --outDir dist",
"build": "yarn build:cjs && yarn build:esm",
"prepublish": "yarn build",
"publish": "npm publish"
},
"keywords": [
"cantonese",
"pingyam",
"pingyum",
"pinyin",
"chinese",
"roman",
"yale",
"lshk",
"Hong Kong Government Cantonese Romanisation",
"romanisation"
],
"author": "chunlaw",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"csvtojson": "^2.0.10",
"jest": "^29.6.4",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chunlaw/cantonese-romanisation.git"
},
"bugs": {
"url": "https://github.com/chunlaw/cantonese-romanisation/issues"
},
"homepage": "https://cantonese-romanisation.chunlaw.io"
}