visual-regression-engine
Version:
A modular visual comparison engine for Processing and p5.js regression testing
65 lines (64 loc) • 1.58 kB
JSON
{
"name": "visual-regression-engine",
"version": "1.0.1",
"description": "A modular visual comparison engine for Processing and p5.js regression testing",
"main": "src/index.js",
"files": [
"src/",
"examples/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"lint": "eslint src/ examples/",
"lint:fix": "eslint src/ examples/ --fix",
"build": "npm run lint",
"prepublishOnly": "npm run build",
"example": "node examples/basic-usage.js",
"clean": "rm -rf coverage/ *.tgz"
},
"keywords": [
"visual-testing",
"regression-testing",
"p5js",
"processing",
"image-comparison",
"creative-coding",
"testing",
"automation",
"canvas",
"pixelmatch",
"visual-regression"
],
"author": {
"name": "Vaivaswat",
"url": "https://github.com/Vaivaswat2244"
},
"license": "MIT",
"peerDependencies": {
"p5": "^1.0.0"
},
"dependencies": {
"canvas": "^2.11.2",
"jsdom": "^26.1.0",
"pixelmatch": "^5.3.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vaivaswat2244/visual-regression-engine.git"
},
"bugs": {
"url": "https://github.com/Vaivaswat2244/visual-regression-engine/issues"
},
"homepage": "https://github.com/Vaivaswat2244/visual-regression-engine#readme"
}