forked from RomainLanz/adonis-bull-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.41 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
97
98
99
100
101
102
103
104
{
"name": "@rlanz/bull-queue",
"version": "1.0.6",
"description": "Queue system based on BullMQ for AdonisJS",
"homepage": "https://github.com/romainlanz/adonis-bull-queue#readme",
"license": "MIT",
"keywords": [
"adonisjs",
"bullmq",
"queue"
],
"author": "Romain Lanz <[email protected]>",
"main": "build/providers/QueueProvider.js",
"files": [
"build/adonis-typings",
"build/commands",
"build/providers",
"build/src",
"build/templates",
"build/instructions.js",
"build/instructions.md"
],
"typings": "./build/adonis-typings/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build-only && npm run copyfiles",
"build-only": "tsc",
"clean": "del-cli build",
"copyfiles": "copyfiles \"templates/**/*.txt\" \"instructions.md\" build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"bullmq": "^3.15.8"
},
"devDependencies": {
"@adonisjs/application": "^5.3.0",
"@adonisjs/core": "^5.9.0",
"@adonisjs/sink": "^5.4.3",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"publishConfig": {
"tag": "latest",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romainlanz/adonis-bull-queue.git"
},
"bugs": {
"url": "https://github.com/romainlanz/adonis-bull-queue/issues"
},
"adonisjs": {
"instructions": "./build/instructions.js",
"instructionsMd": "./build/instructions.md",
"types": "@rlanz/bull-queue",
"providers": [
"@rlanz/bull-queue"
],
"commands": [
"@rlanz/bull-queue/build/commands"
],
"templates": {
"basePath": "./build/templates",
"contracts": [
{
"src": "contract.txt",
"dest": "queue"
}
]
}
},
"eslintConfig": {
"extends": [
"plugin:adonis/typescriptPackage",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
}
}