-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 973 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 973 Bytes
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
{
"name": "firelease",
"version": "3.2.0",
"packageManager": "yarn@4.13.0",
"description": "Firebase queue consumer for Node with at-least-once semantics",
"main": "index.js",
"scripts": {
"update": "yarn up -R '*' && yarn dedupe --strategy highest",
"latest": "yarn npm-check-updates -i -m --packageManager yarn --install never && yarn install",
"lint": "eslint *.js"
},
"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": ">=10.0"
},
"dependencies": {
"lodash": "4.x",
"ms": "2.x",
"nodefire": "4.x",
"safe-timers": "^1.1.0"
},
"devDependencies": {
"eslint": "8.x",
"npm-check-updates": "^20.0.0"
}
}