-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 908 Bytes
/
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
{
"name": "pg-kinesis-bridge",
"description": "Listen for events from PostgreSQL and send them to AWS Kinesis",
"keywords": [
"pg",
"postgres",
"postgresql",
"listen",
"notify",
"kinesis",
"bridge"
],
"author": "Daurnimator <quae@daurnimator.com>",
"homepage": "https://github.com/daurnimator/pg-kinesis-bridge",
"repository": {
"type": "git",
"url": "https://github.com/daurnimator/pg-kinesis-bridge.git"
},
"bugs": {
"url": "https://github.com/daurnimator/pg-kinesis-bridge/issues"
},
"license": "MIT",
"main": "./pg-kinesis-bridge.js",
"bin": {
"pg-kinesis-bridge": "./bin/pg-kinesis-bridge.js"
},
"scripts": {
"start": "node ./bin/pg-kinesis-bridge.js",
"lint": "jshint *.js */*.js"
},
"dependencies": {
"argparse": "^1.0.9",
"aws-sdk": "^2.94.0",
"pg": "^7.0.2"
},
"devDependencies": {
"jshint": "^2.9.5"
},
"jshintConfig": {
"esversion": 6
}
}