mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 11:25:34 +00:00
Some of the npm audit warnings left after #13897 require an updated `mocha` version to remedy. As we only really use `mocha` to do unit-testing, it should be safe to update if all of our existing tests pass with the new version. Test-bot: skip
48 lines
1,007 B
JSON
48 lines
1,007 B
JSON
{
|
|
"name": "@keymanapp/kmc-keyboard-info",
|
|
"description": "Keyman Developer .keyboard_info compiler",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"unicode"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/index.js"
|
|
},
|
|
"files": [
|
|
"/build/src/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"lint": "eslint .",
|
|
"test": "npm run lint"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/common-types": "*",
|
|
"@keymanapp/developer-utils": "*",
|
|
"@keymanapp/kmc-package": "*",
|
|
"@keymanapp/langtags": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^20.4.1",
|
|
"c8": "^7.12.0",
|
|
"chalk": "^2.4.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/*.tests.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|