mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-01 05:07:40 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@keymanapp/ldml-keyboard-compiler",
|
|
"description": "Keyman Developer LDML keyboard compiler",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"ldml",
|
|
"unicode"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"test": "cd test && tsc -b && cd .. && mocha",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"license": "MIT",
|
|
"main": "build/src/kmldmlc.js",
|
|
"bin": {
|
|
"kmldmlc": "build/src/kmldmlc.js"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.11.0",
|
|
"commander": "^3.0.0",
|
|
"crc-32": "^1.2.2",
|
|
"restructure": "^3.0.0",
|
|
"semver": "^7.3.7",
|
|
"typescript": "^4.5.4",
|
|
"xml2js": "^0.4.19"
|
|
},
|
|
"devDependencies": {
|
|
"@keymanapp/keyman-version": "*",
|
|
"@types/chai": "^4.1.7",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^10.14.6",
|
|
"@types/xml2js": "^0.4.5",
|
|
"chai": "^4.3.4",
|
|
"chalk": "^2.4.2",
|
|
"mocha": "^8.4.0",
|
|
"ts-node": "^9.1.1"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/test-*.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|