-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.61 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
{
"name": "rds-data",
"version": "1.1.0",
"description": "A decorator for the AWS Data API for Aurora Serverless. It decorates and abstracts the Amazon SDK's implementation to make it feel more like a traditional MySQL wrapper than an HTTP based web service. It is written in Typescript and provides type-aware return objects which allows for better support in Typescript-based solutions.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "echo 'please use either test-mysql or test-pg'; exit -1;",
"test-mysql": "jest --config jestconfig.json --group=mysql",
"test-pg": "jest --config jestconfig.json --group=pg",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"eslint": "eslint -c ./.eslintrc.yml 'src/*.{js,ts,tsx}' --color --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbschuld/rds-data.git"
},
"keywords": [
"RDS",
"Aurora",
"AWS",
"serverless",
"database",
"mysql",
"data API",
"sq",
"client",
"lambda",
"rds-data-service"
],
"contributors": [
{
"name": "Chris Schuld",
"email": "cbschuld@gmail.com",
"url": "https://chrisschuld.com/"
},
{
"name": "Mark Herhold",
"email": "markherhold@gmail.com",
"url": "https://medium.com/@markherhold"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cbschuld/rds-data/issues"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/cbschuld/rds-data#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.4",
"@types/uuid": "8.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"date-fns": "^2.14.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"jest-runner-groups": "2.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3",
"uuid": "^8.1.0"
},
"dependencies": {
"aws-sdk": "^2.682.0"
}
}