-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "@autotelic/fastify-queue",
"version": "0.2.0",
"description": "an async queue for fastify",
"type": "module",
"types": "index.d.ts",
"keywords": [
"fastify",
"plugin",
"queue"
],
"bugs": {
"url": "https://github.com/autotelic/fastify-queue/issues"
},
"files": [
"index.d.ts"
],
"homepage": "https://github.com/autotelic/fastify-queue#readme",
"license": "MIT",
"main": "index.js",
"scripts": {
"fix": "npm run lint -- --fix",
"lint": "eslint .",
"test": "tap ./test/*.test.js --show-full-coverage",
"tsd": "tsd --files ./test/index.test-d.ts",
"validate": "npm run lint && npm run test && npm run tsd",
"prepare": "husky || true"
},
"devDependencies": {
"@autotelic/eslint-config-js": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"fastify": "^4.26.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"tap": "^18.7.0",
"tsd": "^0.30.4",
"typescript": "^5.3.3"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"p-props": "^6.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"npm run fix"
]
}
}