-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@splitmedialabs/pubsub-queue",
"version": "6.0.9",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"files": [
"lib"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./*": {
"types": "./lib/*.d.ts",
"require": "./lib/*.js",
"import": "./lib/*.js",
"default": "./lib/*.js"
}
},
"dependencies": {
"date-fns": "^4.1.0"
},
"peerDependencies": {
"@google-cloud/pubsub": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@google-cloud/pubsub": "^5.0.0",
"@types/jest": "^26.0.16",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"description": "A Google Cloud Pubsub client for node.js geared towards queues and jobs. Inspired by ceejbot/fivebeans",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SplitmediaLabsLimited/pubsub-queue.git"
},
"keywords": [
"queue",
"gcp-pubusb"
],
"author": "Makara Sok",
"bugs": {
"url": "https://github.com/SplitmediaLabsLimited/pubsub-queue/issues"
},
"homepage": "https://github.com/SplitmediaLabsLimited/pubsub-queue#readme",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"volta": {
"node": "20.19.2",
"yarn": "1.22.22"
}
}