spiegel-keyman/developer/src/server/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

41 lines
1 KiB
JSON

{
"name": "@keymanapp/developer-server",
"description": "Keyman Developer backend server",
"main": "build/src/index.js",
"type": "module",
"scripts": {
"build": "npx gosh ./build.sh build",
"test": "npx gosh ./build.sh test"
},
"license": "MIT",
"dependencies": {
"@keymanapp/developer-utils": "*",
"@sentry/node": "^7.57.0",
"chalk": "^4.1.2",
"express": "^4.20.0",
"multer": "^1.4.5-lts.1",
"ngrok": "^5.0.0-beta.2",
"open": "^8.4.0",
"restructure": "^3.0.1",
"sax": ">=0.6.0",
"semver": "^7.5.4",
"ws": "^8.17.1",
"xmlbuilder": "~11.0.0"
},
"optionalDependencies": {
"node-hide-console-window": "^2.2.0"
},
"devDependencies": {
"@keymanapp/keyman-version": "*",
"@keymanapp/resources-gosh": "*",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.1",
"@types/ws": "^8.2.2",
"copyfiles": "^2.4.1",
"node-gyp": "^10.2.0",
"tsc-watch": "^4.5.0",
"typescript": "^5.4.5"
}
}