-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"name": "suprqueue",
"version": "1.8.0-0",
"description": "Simple in-memory promise-based task queue with support for pausing, merging tasks, or retrying failed tasks",
"main": "dist/Suprqueue.js",
"scripts": {
"prepublish": "tsc -p tsconfig.build.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jankuca/suprqueue.git"
},
"keywords": [
"queue",
"tasks",
"jobs",
"retry"
],
"author": "Jan Kuča",
"license": "MIT",
"bugs": {
"url": "https://github.com/jankuca/suprqueue/issues"
},
"homepage": "https://github.com/jankuca/suprqueue#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/uuid": "^9.0.7",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"spec-phase": "^1.0.3",
"typescript": "^5.3.3"
},
"dependencies": {
"uuid": "^9.0.1"
}
}