-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.86 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
{
"name": "@cap-js-community/event-queue",
"version": "1.8.1",
"description": "An event queue that enables secure transactional processing of asynchronous and periodic events, featuring instant event processing with Redis Pub/Sub and load distribution across all application instances.",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"db",
"cds-plugin.js",
"index.cds"
],
"keywords": [
"CAP",
"CDS",
"messaging",
"async",
"redis",
"load-balancing",
"eventing",
"multi-tenancy"
],
"scripts": {
"test:unit": "jest --testPathIgnorePatterns=\"/test-integration/\"",
"test:integration": "jest --testPathIgnorePatterns=\"/test/\" --runInBand --forceExit",
"test": "npm run test:unit && npm run test:integration",
"test:all:coverage": "jest --runInBand --forceExit --collect-coverage",
"test:prepare": "npm run build:ci --prefix=./test-integration/_env",
"test:deploySchema": "node test-integration/_env/srv/hana/deploy.js",
"test:cleanSchemas": "node test-integration/_env/srv/hana/deleteTestSchema.js ",
"lint": "npm run eslint && npm run prettier",
"lint:ci": "npm run eslint:ci && npm run prettier:ci",
"eslint": "eslint --fix .",
"eslint:ci": "eslint .",
"prettier": "prettier --write --loglevel error .",
"prettier:ci": "prettier --check .",
"prepareRelease": "npm prune --production",
"docs": "cd docs && bundle exec jekyll serve",
"docs:install": "cd docs && npx shx rm -rf vendor Gemfile.lock && bundle install",
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i --package-lock"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@sap/xssec": "^4.2.4",
"cron-parser": "^4.9.0",
"redis": "^4.7.0",
"verror": "^1.10.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@cap-js/hana": "^1.5.2",
"@cap-js/sqlite": "^1.7.8",
"@sap/cds": "^8.6.0",
"@sap/cds-dk": "^8.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.21.2",
"hdb": "^0.19.10",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"sqlite3": "^5.1.7"
},
"homepage": "https://cap-js-community.github.io/event-queue/",
"repository": {
"type": "git",
"url": "https://github.com/cap-js-community/event-queue.git"
},
"cds": {
"eventQueue": {
"[production]": {
"disableRedis": false
},
"[test]": {
"isEventQueueActive": false,
"registerAsEventProcessor": false,
"updatePeriodicEvents": false,
"insertEventsBeforeCommit": false
}
},
"requires": {
"event-queue": {
"model": "@cap-js-community/event-queue"
}
}
},
"author": "Maximilian Gruenfelder <maximilian.gruenfelder@sap.com>",
"license": "Apache-2.0"
}