-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 735 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 735 Bytes
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
{
"name": "idoit",
"version": "4.0.0",
"description": "Featured embeddable tasks queue, backed with redis.",
"keywords": [
"task",
"job",
"queue",
"task queue",
"job queue"
],
"repository": "nodeca/idoit",
"license": "MIT",
"files": [
"index.js",
"lib/"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha --timeout 30000",
"covreport": "nyc report --reporter lcov && nyc report --reporter html"
},
"dependencies": {
"cron": "^1.2.1",
"ioredis": "^4.22.0",
"redis-if": "^1.0.0",
"serialize-error": "^8.0.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0"
}
}