-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.89 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
{
"name": "@fluidware-it/mysql2-client",
"version": "0.7.1",
"main": "build/src/index.js",
"module": "build/esm/index.js",
"esnext": "build/esnext/index.js",
"types": "build/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"author": "Fluidware srl",
"license": "Apache-2.0",
"scripts": {
"prepack": "npm run compile",
"compile": "npm run clean && tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json",
"clean": "rm -rf build",
"env2doc:check": "npm run -s clean && npm run -s compile && env2doc -d -p build/src > .env2doc-check.tmp && diff .env2doc-check.tmp ENVIRONMENT.md",
"env2doc": "npm run -s compile && env2doc -d -p build/src > ENVIRONMENT.md",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "FW_LOGGER_LEVEL=silent jest",
"test:debug": "jest",
"preversion": "npm run -s env2doc:check && npm run -s lint && npm run -s test"
},
"engines": {
"node": ">=18.4"
},
"dependencies": {
"@fluidware-it/saddlebag": "^0.3.0",
"mysql2": "^3.15.2"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@fluidware-it/env2doc": "^0.3.2",
"@testcontainers/mariadb": "^11.12.0",
"@types/jest": "30.0.0",
"eslint": "9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.21.3",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yet-another-license-header": "^0.2.0",
"jest": "30.3.0",
"prettier": "3.8.1",
"testcontainers": "^11.12.0",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.41.0"
},
"files": [
"build/esm/**/*.js",
"build/esm/**/*.js.map",
"build/esm/**/*.d.ts",
"build/esnext/**/*.js",
"build/esnext/**/*.js.map",
"build/esnext/**/*.d.ts",
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"LICENSE",
"README.md"
]
}