-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "egg-bull-queue",
"version": "1.2.1",
"description": "Bull queue plugin for Egg.js.",
"eggPlugin": {
"name": "bull"
},
"keywords": ["egg", "eggPlugin", "egg-plugin"],
"dependencies": {
"@types/bull": "^3.4.1",
"bull": "^3.5.2"
},
"devDependencies": {
"egg": "^2.0.0",
"egg-bin": "^4.3.0",
"egg-mock": "^3.13.0",
"eslint": "^4.11.0",
"eslint-config-egg": "^5.1.0"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint .",
"ci": "npm run lint && npm run cov"
},
"files": ["config", "lib", "app.js", "index.d.ts"],
"ci": {
"version": "8, 9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brickyang/egg-bull.git"
},
"bugs": {
"url": "https://github.com/brickyang/egg-bull/issues"
},
"homepage": "https://github.com/brickyang/egg-bull#readme",
"author": "brick <[email protected]>",
"license": "MIT"
}