-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "@autotelic/fastify-bee-queue",
"version": "0.1.0",
"description": "Fastify plugin for Bee-queue Integration",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "c8 --100 ava",
"lint": "standard",
"fix": "npm run lint -- --fix",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-bee-queue.git"
},
"keywords": [
"fastify",
"redis",
"bee-queue",
"plugin",
"queue"
],
"author": "Autotelic Development Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-bee-queue/issues"
},
"homepage": "https://github.com/autotelic/fastify-bee-queue#readme",
"dependencies": {
"bee-queue": "^1.4.0",
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.10.0",
"fastify": "^3.0.0",
"fastify-cli": "^2.5.1",
"fastify-redis": "^4.3.3",
"lint-staged": "^12.1.2",
"sinon": "^12.0.1",
"standard": "^16.0.3",
"throng": "^5.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run fix"
]
}
}