-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@yolean/kafka-keyvalue",
"version": "1.8.3",
"keywords": [],
"author": "Yolean AB",
"license": "Apache-2.0",
"description": "",
"engines": {
"node": ">=20.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yolean/kafka-keyvalue-nodejs"
},
"main": "target/js/index.js",
"module": "target/esm/index.js",
"exports": {
".": {
"require": "./target/js/index.js",
"import": "./target/esm/index.js"
},
"./target/js/update-events": {
"require": "./target/js/update-events.js",
"import": "./target/esm/update-events.js"
},
"./target/js/KafkaKeyValue": {
"require": "./target/js/KafkaKeyValue.js",
"import": "./target/esm/KafkaKeyValue.js"
}
},
"scripts": {
"refresh": "y-npm install --strict-peer-deps",
"audit": "y-npm audit --audit-level=high",
"test": "KKV_FETCH_RETRY_INTERVAL_MS=1 ./node_modules/.bin/jest",
"prepare:esm": "rm -rf target/esm && tsc --skipLibCheck --module es2022 --target es2022 --outDir target/esm",
"prepare:cjs": "rm -rf target/js && tsc --skipLibCheck --outDir target/js",
"prepare": "mkdir -p target && npm run prepare:cjs && npm run prepare:esm",
"prepublishOnly": "npm test"
},
"dependencies": {
"body-parser": "1.20.4",
"@yolean/bunyan": "2.1.4",
"express": "4.22.1",
"node-fetch": "2.6.7"
},
"devDependencies": {
"@tsconfig/node18": "18.2.2",
"@types/jest": "29.5.6",
"@types/node": "18.18.7",
"jest": "29.7.0",
"prom-client": "14.1.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.4.5"
}
}