-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "@koozaki/romaji-conv",
"version": "2.0.30",
"description": "Convert romaji into kana",
"keywords": [
"romaji",
"kana",
"hiragana",
"katakana",
"nihongo",
"japanese",
"convert",
"ローマ字",
"かな",
"ひらがな",
"カタカナ"
],
"homepage": "https://romaji-conv.koozaki.com/",
"bugs": {
"url": "https://github.com/koozaki/romaji-conv/issues/new?assignees=koozaki&labels=bug&template=bug_report.md",
"email": "[email protected]"
},
"repository": "[email protected]:koozaki/romaji-conv.git",
"license": "MIT",
"author": {
"name": "Kojiro Ozaki",
"email": "[email protected]",
"url": "https://koozaki.com/"
},
"main": "lib/index.js",
"bin": "bin/romaji-conv.js",
"scripts": {
"build": "run-s lint prettier test webpack",
"lint": "eslint ./bin/ ./lib/",
"prettier": "prettier --write .",
"tdd": "jest --watchAll --coverage --verbose",
"test": "jest --coverage --verbose",
"webpack": "webpack"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}