UNPKG

mysql-memory-server

Version:
56 lines (55 loc) 1.56 kB
{ "name": "mysql-memory-server", "version": "1.9.0", "description": "Spin up an ephemeral MySQL database from your JavaScript code", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "files": [ "/dist" ], "keywords": [ "MySQL", "ephemeral database", "continuous integration", "CI", "CI/CD", "memory database" ], "scripts": { "test": "jest --verbose --colors", "test:ci": "jest --setupFilesAfterEnv ./ciSetup.js --verbose --colors --runTestsByPath tests/concurrency.test.ts", "os-compat:ci": "jest --setupFilesAfterEnv ./ciSetup.js --verbose --colors --runTestsByPath tests/versions.test.ts" }, "engines": { "node": ">=16.6.0", "bun": ">=1.0.0" }, "author": "Sebastian-Webster", "license": "MIT", "devDependencies": { "@babel/core": "^7.25.9", "@babel/preset-env": "^7.25.9", "@babel/preset-typescript": "^7.25.9", "@types/adm-zip": "^0.5.5", "@types/node": "^22.10.6", "@types/semver": "^7.5.8", "babel-jest": "^29.7.0", "jest": "^29.7.0", "mysql2": "^3.12.0", "typescript": "^5.7.3" }, "dependencies": { "adm-zip": "^0.5.16", "semver": "^7.7.1", "signal-exit": "^4.1.0" }, "repository": { "type": "git", "url": "https://github.com/Sebastian-Webster/mysql-memory-server-nodejs.git" }, "bugs": { "url": "https://github.com/Sebastian-Webster/mysql-memory-server-nodejs/issues" }, "homepage": "https://github.com/Sebastian-Webster/mysql-memory-server-nodejs", "bin": "dist/src/cli.js" }