-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "wakaq",
"version": "2.2.2",
"description": "Background task queue for Node backed by Redis, a super minimal Celery",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"release:major": "npm version major && npm publish && git push && git push --tags",
"release:minor": "npm version minor && npm publish && git push && git push --tags",
"release:patch": "npm version patch && npm publish && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wakatime/wakaq-ts.git"
},
"keywords": [
"redis",
"queue",
"async",
"worker",
"celery",
"task-queue",
"rq"
],
"author": "Alan Hamlett",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wakatime/wakaq-ts/issues"
},
"homepage": "https://github.com/wakatime/wakaq-ts#readme",
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/eslint": "^8.44.7",
"@types/node": "^20.9.2",
"@types/pidusage": "^2.0.5",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"cron-parser": "^4.9.0",
"ioredis": "^5.3.2",
"pidusage": "^3.0.2",
"ts-duration": "^1.1.0",
"winston": "^3.11.0"
}
}