spiegel-keyman/developer/src/kmc-keyboard-info/package.json
Joshua Horton 155c1a2b12 maint: update mocha
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
2025-05-13 14:02:02 +07:00

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"
}
}