-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 957 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 957 Bytes
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
{
"name": "kojp",
"version": "0.3.0",
"description": "Convert Hangul(Korean letter) to Hiragana(Japanese)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rollup --config",
"clean": "tsc --build --clean",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hanool/kojp.git"
},
"keywords": [
"Kr",
"Jp",
"Hangul"
],
"author": "Hyunsik Lim",
"license": "ISC",
"bugs": {
"url": "https://github.com/hanool/kojp/issues"
},
"homepage": "https://github.com/hanool/kojp#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}