forked from reg2005/adonis5-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.01 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.01 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "adonis5-queue",
"version": "1.0.7",
"description": "Adonis JS 5 queue package based backed by Kue and Kue-scheduler",
"scripts": {
"build": "npm run compile && cpx 'templates/**' 'build/templates'",
"dev": "tsc --watch",
"pretest": "npm run lint",
"test": "node build/japaFile.js",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/reg2005/adonis5-queue"
},
"keywords": [
"adonis",
"adonis5",
"queue",
"kue"
],
"author": {
"name": "Evgeniy Rumin",
"url": "https://github.com/reg2005",
"email": "cmp08@ya.ru"
},
"license": "MIT",
"main": "build/providers/QueueProvider.js",
"types": "build/typings/QueueConfig.d.ts",
"devDependencies": {
"@adonisjs/ace": "^6.9.3",
"@adonisjs/core": "^5.0.0-preview-rc-1.9",
"@adonisjs/fold": "^6.3.5",
"@adonisjs/mrm-preset": "^2.3.7",
"@poppinss/dev-utils": "^1.0.7",
"@types/node": "^14.0.18",
"commitizen": "^4.1.2",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"doctoc": "^1.4.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-adonis": "^1.0.14",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"husky": "^4.2.5",
"japa": "^3.1.1",
"mrm": "^2.3.3",
"np": "^6.3.0",
"npm-audit-html": "^1.4.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/kue": "^0.11.13",
"change-case": "^4.1.1",
"kue": "^0.11.6",
"kue-scheduler": "^0.10.6",
"kue-unique": "^1.0.39",
"randomstring": "^1.1.5"
},
"husky": {
"hooks": {
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html && doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"files": [
"build/src",
"build/typings",
"build/providers",
"build/templates",
"build/commands"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"adonisjs": {
"templates": {
"config": [
{
"src": "config.txt",
"dest": "queue"
}
]
},
"commands": [
"adonis5-queue/build/commands"
],
"types": "adonis5-queue",
"providers": [
"adonis5-queue"
],
"env": {
"QUEUE_REDIS_HOST": "127.0.0.1",
"QUEUE_REDIS_PORT": "6379",
"QUEUE_REDIS_DB": "0"
}
}
}