-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "knex-aurora-data-api-client",
"version": "1.10.0",
"description": "Knex Aurora Data API Client",
"main": "index.js",
"files": [
"src/**/*.js"
],
"scripts": {
"lint": "eslint src",
"test": "mocha test/**/*.test.js --timeout 10000",
"unit": "mocha test/unit/**/*.test.js --timeout 10000",
"package": "rm -rf node_modules && npm install --prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusahlstrand/knex-data-api-client.git"
},
"keywords": [
"knex",
"data",
"api",
"rds",
"aurora",
"serverless",
"mysql",
"postgres"
],
"author": "Markus Ahlstrand",
"license": "MIT",
"bugs": {
"url": "https://github.com/markusahlstrand/knex-aurora-data-api-client/issues"
},
"homepage": "https://github.com/markusahlstrand/knex-data-api-client#readme",
"dependencies": {
"bluebird": "3.7.2",
"data-api-client": "1.2.0"
},
"peerDependencies": {
"knex": "^2.1.0"
},
"devDependencies": {
"@aws-cdk/aws-rds": "^1.161.0",
"@aws-cdk/core": "^1.161.0",
"aws-sdk": "^2.1161.0",
"chai": "4.3.6",
"dotenv": "16.0.1",
"eslint": "8.18.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"knex": "^2.1.0",
"knex-migrate": "1.7.4",
"mocha": "10.0.0",
"mysql": "2.18.1",
"pg": "8.7.3",
"prettier": "2.7.1"
}
}