mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +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
64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"name": "@keymanapp/kmc-generate",
|
|
"description": "Keyman Developer generate module",
|
|
"keywords": [
|
|
"keyboard",
|
|
"keyman",
|
|
"ldml",
|
|
"unicode"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./build/src/main.js"
|
|
},
|
|
"files": [
|
|
"/build/src/"
|
|
],
|
|
"scripts": {
|
|
"build": "gosh ./build.sh build",
|
|
"lint": "eslint .",
|
|
"test": "gosh ./build.sh test"
|
|
},
|
|
"author": "Marc Durdin <marc@keyman.com> (https://github.com/mcdurdin)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/keymanapp/keyman/issues"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/common-types": "*",
|
|
"@keymanapp/developer-utils": "*",
|
|
"@keymanapp/keyman-version": "*",
|
|
"@keymanapp/langtags": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@keymanapp/developer-test-helpers": "*",
|
|
"@keymanapp/resources-gosh": "*",
|
|
"@types/node": "^20.4.1",
|
|
"@types/semver": "^7.3.12",
|
|
"c8": "^7.12.0",
|
|
"chalk": "^2.4.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"mocha": {
|
|
"spec": "build/test/**/*.tests.js",
|
|
"require": [
|
|
"source-map-support/register"
|
|
]
|
|
},
|
|
"c8": {
|
|
"all": true,
|
|
"src": [
|
|
"src/"
|
|
],
|
|
"exclude-after-remap": true,
|
|
"exclude": [
|
|
"test/",
|
|
"src/template/",
|
|
"src/main.ts"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/keymanapp/keyman.git"
|
|
}
|
|
}
|