-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "kortype",
"version": "0.1.0",
"description": "Convert Korean typo of Querty/Dubeolsik, and translate Hangul codepoint bewteen Windows/macOS",
"keywords": [
"english",
"korean",
"macos",
"typo",
"convert",
"fix",
"translate",
"hangul"
],
"author": "Geonu Kim <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*",
"format": "prettier -w src/**/*",
"test": "mocha -r node_modules/ts-node/register test/**/*",
"prepare": "npm run build"
},
"engines": {
"node": ">=10"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-dedent": "^2.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laziu/node-kortype.git"
},
"bugs": {
"url": "https://github.com/laziu/node-kortype/issues"
},
"homepage": "https://github.com/laziu/node-kortype#readme"
}