-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 4.32 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
{
"name": "backbeat",
"version": "8.6.53",
"description": "Asynchronous queue and job manager",
"main": "index.js",
"scripts": {
"queue_populator": "BACKBEAT_QUEUEPOPULATOR_EXTENSIONS=replication,lifecycle node bin/queuePopulator.js",
"queue_processor": "node extensions/replication/queueProcessor/task.js",
"replication_populator": "BACKBEAT_QUEUEPOPULATOR_EXTENSIONS=replication node bin/queuePopulator.js",
"ingestion_populator": "node bin/ingestion.js",
"replication_status_processor": "node extensions/replication/replicationStatusProcessor/task.js",
"lifecycle_populator": "BACKBEAT_QUEUEPOPULATOR_EXTENSIONS=lifecycle node bin/queuePopulator.js",
"lifecycle_conductor": "node extensions/lifecycle/conductor/service.js",
"lifecycle_bucket_processor": "node extensions/lifecycle/bucketProcessor/task.js",
"lifecycle_object_processor": "node extensions/lifecycle/objectProcessor/task.js",
"lifecycle_object_transition_processor": "LIFECYCLE_OBJECT_PROCESSOR_TYPE=transition node extensions/lifecycle/objectProcessor/task.js",
"oplog_populator": "node extensions/oplogPopulator/OplogPopulatorTask.js",
"mongo_queue_processor": "node extensions/mongoProcessor/mongoProcessorTask.js",
"garbage_collector": "node extensions/gc/service.js",
"test": "mocha --recursive tests/unit --timeout 30000",
"cover:test": "nyc --clean --silent yarn run test && nyc report --report-dir ./coverage/test --reporter=lcov",
"ft_test": "mocha --recursive $(find tests/functional -name '*.js') --timeout 30000",
"ft_test:notification": "mocha --recursive $(find tests/functional/notification -name '*.js') --timeout 30000",
"ft_test:replication": "mocha --recursive $(find tests/functional/replication -name '*.js') --timeout 30000",
"ft_test:lib": "mocha --recursive $(find tests/functional/lib -name '*.js') --timeout 30000",
"ft_test:lifecycle": "mocha --recursive $(find tests/functional/lifecycle -name '*.js') --timeout 30000",
"ft_test:ingestion": "mocha --recursive $(find tests/functional/ingestion -name '*.js') --timeout 30000",
"ft_test:api:routes": "mocha tests/functional/api/routes.js --timeout 30000",
"ft_test:api:retry": "mocha tests/functional/api/retry.js --timeout 30000",
"bh_test": "mocha --recursive tests/behavior",
"lint": "eslint $(git ls-files '*.js')",
"lint_md": "mdlint $(git ls-files '[^bucket-scanner/]*.md')",
"start": "node bin/backbeat.js",
"notification_populator": "BACKBEAT_QUEUEPOPULATOR_EXTENSIONS=notification BACKBEAT_QUEUEPOPULATOR_LOGSOURCE=kafka node bin/queuePopulator.js",
"notification_processor": "node extensions/notification/queueProcessor/task.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scality/backbeat.git"
},
"author": "Scality Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/backbeat/issues"
},
"homepage": "https://github.com/scality/backbeat#readme",
"dependencies": {
"JSONStream": "^1.3.5",
"arsenal": "git+https://github.com/scality/arsenal#8.1.115",
"async": "^2.3.0",
"aws-sdk": "^2.938.0",
"backo": "^1.1.0",
"breakbeat": "scality/breakbeat#v1.0.3",
"bucketclient": "scality/bucketclient#8.1.9",
"commander": "^2.11.0",
"fcntl": "github:scality/node-fcntl#0.2.2",
"httpagent": "git+https://github.com/scality/httpagent#1.0.6",
"ioredis": "^4.9.5",
"joi": "^17.6.0",
"minimatch": "^3.0.4",
"mongodb": "^3.1.13",
"node-forge": "^0.7.6",
"node-rdkafka": "^2.12.0",
"node-rdkafka-prometheus": "^1.0.0",
"node-schedule": "^1.2.0",
"node-zookeeper-client": "^1.1.3",
"prom-client": "14.2.0",
"semver": "^5.6.0",
"typescript": "^4.9.5",
"uuid": "^3.1.0",
"vaultclient": "scality/vaultclient#8.3.11",
"werelogs": "scality/werelogs#8.1.2"
},
"resolutions": {
"node-rdkafka-prometheus/prom-client": "14.2.0"
},
"devDependencies": {
"@zenko/cloudserver": "git+https://github.com/scality/cloudserver#8.6.8",
"c8": "^8.0.1",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-scality": "scality/Guidelines#8.2.0",
"eslint-plugin-import": "^2.14.0",
"lolex": "^2.7.5",
"mocha": "^3.3.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"zookeeper-mock": "^1.2.0"
},
"engines": {
"node": ">=16"
}
}