package.json•1.68 kB
{
"name": "automation-script-generator",
"version": "1.0.0",
"description": "MCP server for automated WDIO test script generation from user prompts",
"main": "index.js",
"type": "module",
"bin": {
"automation-script-generator": "./index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --inspect index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:validation": "node user-prompt-validation.js",
"test:smart": "node smart-analysis-demo.js",
"test:legacy": "node validation-demo.js",
"test:enhanced": "node test-enhanced-methods.js",
"validate": "node --check index.js && echo 'Syntax validation passed'"
},
"keywords": [
"mcp",
"model-context-protocol",
"automation",
"testing",
"wdio",
"webdriverio",
"gherkin",
"test-generation",
"user-prompt"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"ajv": "^8.17.1",
"dotenv": "^17.2.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"path": "^0.12.7"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"jest": "^30.0.5"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"globals": {
"NODE_OPTIONS": "--experimental-vm-modules"
},
"testMatch": ["**/tests/**/*.test.js"],
"collectCoverageFrom": [
"index.js",
"src/**/*.js",
"!node_modules/**"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
}
}
}