-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.14 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "middy-rds",
"version": "4.0.1",
"description": "Simple RDS manager for the middy framework",
"type": "module",
"engines": {
"node": ">=16"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
},
"main": "./index.mjs",
"exports": {
".": {
"import": {
"default": "./index.mjs"
},
"require": {
"default": "./index.cjs"
}
},
"./knex": {
"import": {
"default": "./clients/knex.mjs"
},
"require": {
"default": "./clients/knex.cjs"
}
},
"./pg": {
"import": {
"default": "./clients/pg.mjs"
},
"require": {
"default": "./clients/pg.cjs"
}
},
"./postgres": {
"import": {
"default": "./clients/postgres.mjs"
},
"require": {
"default": "./clients/postgres.cjs"
}
}
},
"files": [
"index.mjs",
"index.cjs",
"clients/*"
],
"scripts": {
"prepare": "husky install",
"commit-msg": "commitlint --config commitlint.config.cjs --edit",
"pre-commit": "lint-staged",
"lint": "prettier --write '**/*.{js,json}' && standard --fix",
"build": "./bin/esbuild",
"test": "ava"
},
"license": "MIT",
"keywords": [
"Lambda",
"Middleware",
"Serverless",
"Framework",
"AWS",
"AWS Lambda",
"RDS"
],
"author": {
"name": "Contributors",
"url": "https://github.com/willfarrell/middy-rds/graphs/contributors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willfarrell/middy-rds.git"
},
"bugs": {
"url": "https://github.com/willfarrell/middy-rds/issues"
},
"homepage": "https://github.com/willfarrell/middy-rds#readme",
"dependencies": {
"@middy/util": "4.0.0"
},
"gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431",
"devDependencies": {
"@aws-sdk/rds-signer": "^3.199.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"ava": "^5.0.0",
"c8": "^7.0.0",
"esbuild": "^0.15.12",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0",
"standard": "^17.0.0"
}
}