-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "kor-eng-typing-converter",
"version": "1.2.3",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Lee YoungHoon <nobel6018@gmail.com>",
"homepage": "https://www.todaydev.io/typing-converter",
"repository": {
"type": "git",
"url": "https://github.com/nobel6018/kor-eng-typing-converter.git"
},
"keywords": [
"korean-english-typing-converter",
"korean-english-keyboard-typing-converter",
"korean to english",
"english to korean"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nobel6018/kor-eng-typing-converter/issues",
"email": "nobel6018@gmail.com"
},
"scripts": {
"build": "rimraf build && yarn test && tsc",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"preversion": "yarn lint",
"version": "yarn build && git add src && git add build && git add package.json",
"prepublishOnly": "yarn test",
"postpublish": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.1",
"babel-jest": "^29.2.2",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
}
}