This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "grind-queue",
"version": "0.8.0-beta.13",
"description": "Queue provider for Grind",
"author": "Shaun Harrison (@shnhrrsn)",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/grindjs/queue.git"
},
"keywords": [
"grindjs",
"grind-framework",
"rabbitmq",
"beanstalk",
"ampq",
"queue",
"faktory"
],
"dependencies": {
"uuid": "^3.3.2"
},
"peerDependencies": {
"grind-cli": "^0.8.0-beta.4",
"grind-framework": "^0.8.0-beta.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/register": "^7.0.0",
"amqplib": "^0.5.1",
"ava": "^2.0.0",
"babel-eslint": "^10.0.1",
"babel-preset-grind": "^0.8.0-beta.3",
"eslint": "^5.8.0",
"eslint-config-grind": "^2.1.5",
"eslint-plugin-import-auto-name": "^1.1.0",
"faktory-worker": "^0.6.3",
"fetchit": "^2.1.0",
"fivebeans": "^1.5.0",
"grind-cache": "^0.7.1",
"grind-cli": "^0.8.0-beta.4",
"grind-framework": "^0.8.0-beta.4",
"grind-http": "^0.8.0-beta.1",
"redis": "^2.8.0"
},
"engines": {
"node": ">=10.13"
},
"scripts": {
"prepack": "bin/build",
"lint": "eslint src",
"test": "ava --verbose"
},
"grind": {
"command": "lib/Commands/MakeJobCommand.js"
},
"ava": {
"helpers": [
"test/**/helpers/**/*"
],
"files": [
"test/**/*",
"!test/FaktoryDriver.js"
],
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"grind",
{
"import-auto-name": {
"autoresolve": true
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"import-auto-name"
],
"env": {
"node": true
},
"extends": "grind",
"parserOptions": {
"sourceType": "module"
}
}
}