-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mysql-memory-server",
"version": "1.8.1",
"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 --testPathIgnorePatterns=/stress-tests/ --verbose --colors",
"test:ci": "jest --testPathIgnorePatterns=/stress-tests/ --setupFilesAfterEnv ./ciSetup.js --verbose --colors",
"stress": "jest --runTestsByPath stress-tests/stress.test.ts --setupFilesAfterEnv ./ciSetup.js --verbose --colors"
},
"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.9.3",
"@types/semver": "^7.5.8",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"mysql2": "^3.11.3",
"typescript": "^5.7.2"
},
"dependencies": {
"adm-zip": "^0.5.16",
"semver": "^7.6.3",
"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"
}