-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.02 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@florajs/datasource-mysql",
"version": "7.1.0",
"description": "MySQL connection for Flora",
"main": "index.js",
"scripts": {
"test:cleanup": "docker rm --force flora-mysql-testdb",
"test:start-testdb": "docker run -d --name flora-mysql-testdb -e MYSQL_ALLOW_EMPTY_PASSWORD=yes -e MYSQL_DATABASE=${MYSQL_DATABASE:-flora_mysql_testdb} -p ${MYSQL_PORT:-3306}:3306 --tmpfs \"/var/lib/mysql\" mysql:${MYSQL_VERSION:-8.4}",
"test:mysql": "./test/integration/tool/wait-for-mysql.sh ${MYSQL_HOST:-localhost} ${MYSQL_PORT:-3306} ${MYSQL_DATABASE:-flora_mysql_testdb} && npm run test:ci",
"test:stop": "docker stop flora-mysql-testdb",
"test:ci": "node --test test/integration/*.spec.js",
"test-ci": "npm run test:cleanup; npm run test:start-testdb && npm run test:mysql; npm run test:stop",
"test-unit": "node --test test/unit/*.spec.js test/unit/**/*.spec.js",
"test": "npm run test-unit && npm run test-ci",
"lint": "eslint ."
},
"author": {
"name": "stock3 AG",
"email": "it@stock3.com"
},
"keywords": [
"florajs"
],
"homepage": "https://github.com/florajs/datasource-mysql",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/florajs/datasource-mysql.git"
},
"files": [
"index.js",
"lib/"
],
"contributors": [
{
"name": "Marco Baumgartl",
"email": "marco.baumgartl@stock3.com"
},
{
"name": "Nico Kaiser",
"email": "nico.kaiser@stock3.com"
},
{
"name": "Mark Plomer",
"email": "mark.plomer@stock3.com"
}
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@florajs/errors": "^4.0.0",
"@florajs/sql-parser": "^4.0.0",
"mysql2": "^3.24.1",
"named-placeholders": "^1.1.6",
"sql-escaper": "^1.5.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"bunyan": "^1.8.15",
"eslint": "^10.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.11.0",
"prettier": "^3.9.6"
}
}