mirror of
https://github.com/barkeser2002/node-minecraft-protocol.git
synced 2026-09-25 08:30:08 +03:00
- Replace Jest with Mocha + Sinon for better compatibility - All 10 tests passing covering automation logic - Test version updates, git operations, error handling
19 lines
491 B
JSON
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": "*"
|
|
}
|
|
} |