-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "num-to-korean",
"version": "0.5.3",
"description": "Function to write numbers in Korean",
"repository": "https://github.com/huskyhoochu/num-to-korean.git",
"author": "huskyhoochu <dfg1499@gmail.com> (https://www.huskyhoochu.com)",
"license": "MIT",
"main": "dist/num-to-korean.cjs.js",
"types": "dist/num-to-korean.d.ts",
"unpkg": "dist/num-to-korean.min.js",
"jsdelivr": "dist/num-to-korean.min.js",
"files": [
"dist"
],
"keywords": [
"number",
"korean",
"숫자",
"한글"
],
"scripts": {
"build": "rollup -c",
"prepare": "husky install",
"test": "jest --coverage",
"prettier": "prettier --write",
"eslint": "eslint --fix"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier",
"eslint"
],
"*.{json,md,js}": [
"prettier"
]
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^27.5.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}