-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
{
"author": "Evan Tahler <[email protected]>",
"name": "node-resque",
"description": "an opinionated implementation of resque in node",
"license": "Apache-2.0",
"version": "9.3.7",
"homepage": "http://github.com/actionhero/node-resque",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/node-resque.git"
},
"main": "dist/index",
"types": "dist/index",
"keywords": [
"delayed",
"queue",
"resque",
"redis",
"work",
"worker",
"background",
"job",
"task"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"ioredis": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"node-schedule": "^2.1.1",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typescript": "^5.4.5"
},
"scripts": {
"prepare": "npm run build && npm run docs",
"pretest": "npm run lint && npm run build",
"lint": "prettier --check src __tests__ examples \"*.md\"",
"pretty": "prettier --write src __tests__ examples \"**/*.md\"",
"test": "jest",
"build": "tsc --declaration",
"docs": "typedoc --out docs --theme default src/index.ts"
}
}