-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hangul-to-kana",
"version": "0.0.1",
"description": "Convert Korean Hangul to Japanese Kana that is pronunciation friendly like: 사랑해요 -> サランヘヨ.",
"keywords": [
"korean",
"hangul",
"japanese",
"kana",
"pronunciation",
"convert"
],
"homepage": "https://github.com/akkadaska/hangul-to-kana/",
"bugs": {
"url": "https://github.com/akkadaska/hangul-to-kana/issues"
},
"license": "MIT",
"author": {
"name": "Daisuke Akazawa",
"url": "https://github.com/akkadaska"
},
"main": "./dist/index.js",
"scripts": {
"start": "npm run build && node ./dist/bin/index.js",
"build": "tsc",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest",
"test:coverage": "jest --coverage",
"score": "ts-node test/score/perform.ts",
"ci:test:coverage": "jest --coverage --silent --ci --testLocationInResults --json --outputFile=\"report.json\"",
"ci:score": "ts-node test/score/perform.ts --ci"
},
"bin": {
"hangul-to-kana": "./dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/akkadaska/hangul-to-kana"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.19",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"cli-table3": "^0.6.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"files": [
"dist"
],
"release": {
"branches": ["main"]
},
"jest": {
"rootDir": "./",
"testRegex": ".*\\.test\\.ts$",
"collectCoverageFrom": [
"./src/**/*.(t|j)s",
"!./src/index.ts",
"!./src/bin/index.ts",
"!**/node_modules/**"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"transform": {
"<transform_regex>": [
"ts-jest",
{
"useESM": true
}
]
},
"preset": "ts-jest/presets/default"
}
}