{ "name": "dermatolog-ai-scan-frontend", "version": "1.0.0", "engines": { "node": ">=16.0.0" }, "description": "Frontend JavaScript modules for Dermatolog AI Scan", "type": "module", "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch", "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage" }, "devDependencies": { "@jest/globals": "^29.7.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0" }, "jest": { "testEnvironment": "jsdom", "transform": {}, "testMatch": [ "**/tests/javascript/**/*.test.js" ], "collectCoverageFrom": [ "app/static/js/modules/**/*.js" ], "coverageThreshold": { "global": { "branches": 80, "functions": 80, "lines": 80, "statements": 80 } } } }