Files
Romain Beaumont 1822611748 Convert to Mocha test framework
- Replace Jest with Mocha + Sinon for better compatibility
- All 10 tests passing covering automation logic
- Test version updates, git operations, error handling
2025-09-07 15:11:26 +02:00

19 lines
491 B
JSON

{
"name": "node-minecraft-protocol-helper",
"version": "1.0.0",
"description": "Helper scripts for node-minecraft-protocol automation",
"main": "updator.js",
"scripts": {
"test": "mocha test/**/*.test.js",
"test:watch": "mocha test/**/*.test.js --watch",
"test:coverage": "nyc mocha test/**/*.test.js"
},
"devDependencies": {
"mocha": "^10.2.0",
"sinon": "^17.0.1",
"nyc": "^15.1.0"
},
"dependencies": {
"gh-helpers": "*"
}
}