-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "firelease",
"version": "4.2.0",
"packageManager": "yarn@4.13.0",
"description": "Firebase queue consumer for Node with at-least-once semantics",
"main": "built/index.js",
"types": "built/index.d.ts",
"files": [
"/built"
],
"scripts": {
"update": "yarn up -R '*' && yarn dedupe --strategy highest",
"latest": "yarn npm-check-updates -i -m --packageManager yarn --install never && yarn install",
"upgrade": "reviewable-upgrade",
"lint": "eslint src/*.ts tests/*.ts",
"check-types": "tsc --noEmit --skipLibCheck && tsc --project tests/tsconfig.json --skipLibCheck",
"build": "tsc",
"test": "node --test --import=tsx tests/*.test.ts",
"prepack": "tsc"
},
"repository": "https://github.com/Reviewable/firelease",
"keywords": [
"Firebase",
"api",
"queue",
"lease"
],
"author": "Piotr Kaminski <piotr@ideanest.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkaminski/firelease/issues"
},
"homepage": "https://github.com/pkaminski/firelease",
"engines": {
"node": ">=24"
},
"dependencies": {
"firebase-childrenkeys": "^3.3.0",
"lodash": "4.x",
"ms": "2.x",
"nodefire": "^7.1.0",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/ms": "^2.1.0",
"@types/node": "^24.10.0",
"@types/safe-timers": "^1.1.0",
"eslint": "^10.7.0",
"npm-check-updates": "^22.2.9",
"reviewable-configs": "Reviewable/reviewable-configs#master",
"tsx": "^4.23.1",
"typescript": "^5.4.0"
}
}