forked from actionhero/node-resque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
53
54
55
56
57
58
59
60
61
{
"author": "Evan Tahler <[email protected]>",
"name": "node-resque",
"description": "an opinionated implementation of resque in node",
"license": "Apache-2.0",
"version": "8.2.3",
"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": ">= 8"
},
"dependencies": {
"ioredis": "^4.22.0"
},
"devDependencies": {
"@types/ioredis": "^4.19.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"ioredis-mock": "^5.2.1",
"jest": "^26.6.3",
"node-schedule": "^2.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.24",
"typescript": "^4.1.5"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/utils"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"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"
}
}