mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
This adds a modified `mocha-teamcity-reporter` that allows to nest the unit tests under the parent block. Fixes: #14839 Test-bot: skip
27 lines
681 B
JSON
27 lines
681 B
JSON
{
|
|
"name": "@keymanapp/gesture-recognizer",
|
|
"description": "The core gesture-recognition engine used by Keyman's Web-based OSKs.",
|
|
"devDependencies": {
|
|
"@keymanapp/resources-gosh": "*",
|
|
"promise-status-async": "^1.2.10",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"scripts": {
|
|
"build": "gosh ./build.sh",
|
|
"test": "gosh ./build.sh test"
|
|
},
|
|
"dependencies": {
|
|
"@keymanapp/web-utils": "*",
|
|
"eventemitter3": "^5.0.0"
|
|
},
|
|
"main": "./build/obj/index.js",
|
|
"exports": {
|
|
".": {
|
|
"es6-bundling": "./src/engine/index.ts",
|
|
"default": "./build/obj/index.js"
|
|
}
|
|
},
|
|
"types": "./build/obj/index.d.ts",
|
|
"type": "module",
|
|
"sideEffects": false
|
|
}
|