kana-romaji
Version:
A simple function to convert Hiragana and Katakana into Romaji representation.
59 lines (58 loc) • 1.56 kB
JSON
{
"name": "kana-romaji",
"version": "0.1.10",
"description": "A simple function to convert Hiragana and Katakana into Romaji representation.",
"main": "lib/index.js",
"types": "lib/kana-romaji.d.ts",
"scripts": {
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mtomim/kana-romaji.git"
},
"keywords": [
"Japanese",
"Hiragana",
"Katakana",
"kana",
"romaji",
"transliteration"
],
"author": "Masaru Tomimitsu <masaru.tomimitsu at gmail> (https://github.com/mtomim)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtomim/kana-romaji/issues"
},
"homepage": "https://github.com/mtomim/kana-romaji#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"jest": "^27.3.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"extensionsToTreatAsEsm": [
".ts"
]
}
}