-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.29 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.29 KB
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
{
"name": "postgres_informix_updater",
"version": "1.0.0",
"description": "Listens to DML triggers from the postgres database and updates corresponding informix database",
"scripts": {
"test": "mocha ./test/*.test.js --exit",
"lint": "standard --env mocha",
"lint:fix": "standard --env mocha --fix",
"producer": "node ./src/producer.js",
"producer_channel_2": "node ./src/producer.js",
"consumer": "node ./src/consumer.js",
"producer_dd": "node ./src/producer.js failover",
"reconsiler1": "node ./src/reconsiler-audit.js",
"reconsiler2": "node ./src/reconsiler-dd-new.js",
"start": "npm run producer & npm run producer_dd & npm run consumer & npm run reconsiler1 & npm run reconsiler2 & npm run producer_channel_2"
},
"author": "Topcoder",
"license": "ISC",
"dependencies": {
"aws-sdk": "*",
"config": "^3.2.2",
"informix-wrapper": "git+https://github.com/appirio-tech/informix-wrapper.git#prepare_stmt_fix",
"no-kafka": "^3.4.3",
"pg": "^7.12.1",
"sleep": "^6.1.0",
"standard": "^13.1.0",
"underscore": "^1.12.1",
"winston": "^3.2.1",
"lodash": "^4.17.15",
"topcoder-bus-api-wrapper": "^1.0.1",
"topcoder-healthcheck-dropin": "^1.0.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0"
}
}