forked from Rocketseat/adonis-bull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.83 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
{
"name": "@rocketseat/adonis-bull",
"version": "0.3.0",
"main": "src/Queue.js",
"license": "MIT",
"scripts": {
"test": "node japaFile.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "eslint --ignore-path .gitignore",
"format": "prettier \"**/*.js\" --write --ignore-path .gitignore"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"bin"
]
},
"directories": {
"test": "test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"yarn lint --fix",
"yarn format"
]
},
"commitlint": {
"extends": [
"@rocketseat/commitlint-config"
]
},
"keywords": [
"bull",
"queue",
"adonis",
"adonisjs",
"adonis-js",
"adonis-bull",
"adonis-queue"
],
"devDependencies": {
"@adonisjs/ace": "^5.0.8",
"@adonisjs/fold": "^4.0.9",
"@adonisjs/sink": "^1.0.17",
"@commitlint/cli": "^11.0.0",
"@rocketseat/commitlint-config": "^0.0.2",
"delay": "^4.3.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.8",
"japa": "^3.0.1",
"lint-staged": "^10.5.3",
"nyc": "^14.1.1",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketseat/adonis-bull.git"
},
"dependencies": {
"bull": "^3.22.1",
"bull-board": "^1.5.1",
"date-fns": "^2.7.0",
"human-interval": "^0.1.6"
},
"resolutions": {
"**/**/minimist": "^1.2.3",
"**/**/set-value": "^3.0.1"
}
}