forked from ali-sdk/ali-rds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "@eggjs/rds",
"version": "1.2.1",
"description": "My RDS Client",
"main": "lib/client.js",
"types": "lib/client.d.ts",
"files": [
"lib"
],
"scripts": {
"contributor": "git-contributor",
"test": "egg-bin test",
"ci": "npm run lint && egg-bin cov && npm run prepublishOnly",
"lint": "eslint src test --cache",
"build": "tsc -p ./tsconfig.json",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"mysql2": "^3.9.1"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.3.2",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"egg-bin": "^6.1.2",
"eslint": "^8.29.0",
"eslint-config-egg": "^12.1.0",
"git-contributor": "^2.0.0",
"mm": "^3.3.0",
"typescript": "^5.1.3"
},
"homepage": "https://github.com/node-modules/rds",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/rds.git"
},
"bugs": {
"url": "https://github.com/node-modules/rds/issues"
},
"keywords": [
"rds",
"mysql",
"mysql2"
],
"engines": {
"node": ">= 16.17.0"
},
"author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}