generated from Soontao/ts-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.92 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cds-mysql",
"version": "7.9.0",
"main": "lib/index.js",
"cds.main": "./index.cds",
"description": "mysql database adapter for cds",
"bin": {
"cds-mysql-build": "./bin/build"
},
"scripts": {
"install:dev": "node install_optional_deps.js",
"pretest": "npm run install:dev",
"prelint": "npm run install:dev",
"prebench": "npm run install:dev",
"prebuild": "npm run install:dev",
"test": "jest --passWithNoTests --runInBand --forceExit",
"build": "tsc",
"bench": "node bench/benchmark.js",
"postbuild": "tsc --noEmit --p tsconfig.lib.json",
"lint": "eslint src/** --fix",
"release": "npx standard-version --no-verify",
"alpha-release": "npx standard-version --prerelease alpha --no-verify",
"coverage": "npm test -- --coverage --no-cache"
},
"repository": {
"type": "git",
"url": "https://github.com/Soontao/cds-mysql"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@newdash/graphlib": "3.1.4",
"@newdash/newdash": "5.23.1",
"cds-internal-tool": "1.7.9",
"colors": "1.4.0",
"generic-pool": "3.9.0",
"glob": "11.0.1",
"luxon": "3.5.0",
"mysql2": "3.12.0",
"ts-mysql-parser": "0.2.0",
"typeorm": "0.3.20"
},
"devDependencies": {
"@types/generic-pool": "3.8.3",
"@types/jest": "29.5.14",
"@types/luxon": "3.4.2",
"@types/node": "22.12.0",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"axios": "1.7.9",
"benchmark": "2.1.4",
"eslint": "9.19.0",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"cds": {
"requires": {
"kinds": {
"mysql": {
"impl": "cds-mysql"
}
}
}
},
"license": "MIT",
"keywords": [
"CDS",
"CAP",
"MySQL",
"MariaDB"
]
}