mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
Note that this requires adding an additional `km-core-node.mjs` module (since the tests are run with node). We can't create one that would work for both web and node - if we do trying to load the `km-core.js` fails with `km-core.mjs: Could not resolve import "module".`
16 lines
308 B
JSON
16 lines
308 B
JSON
{
|
|
"name": "wasm-tests",
|
|
"version": "1.0.0",
|
|
"description": "Unit tests for WASM version of Core",
|
|
"main": "tests.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "mocha ."
|
|
},
|
|
"author": "SIL Global",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"chai": "^5.1.2",
|
|
"mocha": "^11.0.1"
|
|
}
|
|
}
|