-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "@hectortav/hermes",
"version": "1.0.4",
"description": "Hermes is a minimal Node.js job scheduler. Uses Redis to ensure reliability and job persistence between reloads and restarts. Hermes uses Typescript by default.",
"author": "Ektoras Tavoularis @hectortav",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"queue",
"queues",
"persistent",
"redis",
"reload",
"restart",
"runner",
"schedule",
"scheduler",
"task",
"tasker",
"timer",
"timeout"
],
"repository": {
"type": "git",
"url": "git+https://github.com/needit-gr/hermes.git"
},
"bugs": {
"url": "https://github.com/needit-gr/hermes/issues"
},
"homepage": "https://github.com/needit-gr/hermes",
"scripts": {
"build": "tsc --declaration --project ./",
"start": "node dist/index.js",
"dev": "concurrently --kill-others \"tsc -w\" \"nodemon dist/index.js\"",
"lint": "eslint . --ext .js,.ts --fix",
"test": "jest --runInBand --detectOpenHandles --forceExit"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"jest": "^29.1.1",
"nodemon": "^2.0.20",
"typescript": "^4.8.4"
},
"dependencies": {
"ioredis": "^5.2.3"
}
}