-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 KB
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
{
"name": "taurus-queue",
"description": "Simple Node.js App to manage queues on redis based on Bull",
"version": "1.0.3",
"contributors": [
{
"name": "Not Empty Foundation",
"email": "dev@not-empty.com"
}
],
"main": "queue.js",
"dependencies": {
"bull": "^4.12.0",
"dotenv": "^16.3.1",
"ulid": "^2.3.0"
},
"keywords": [
"queue",
"node",
"bull",
"cluster",
"redis",
"taurus"
],
"readmeFilename": "README.md",
"scripts": {
"start": "node queue.js",
"start-cluster": "node cluster-queue.js",
"dev": "node --watch queue.js",
"dev-cluster": "node --watch cluster-queue.js",
"lint": "./node_modules/.bin/eslint *.js ./app/*.js ./business/*.js ./config/*.js ./sample/*.js ./core/*.js",
"check": "npm run lint"
},
"license": "GPL-3.0-only",
"devDependencies": {
"chai": "^4.3.10",
"dirty-chai": "^2.0.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.2.0"
}
}