-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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": "@kit-p/fastify-tasks",
"version": "2.0.0",
"description": "Tasks tracking plugin for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"example": "node examples/example.js",
"example-typescript": "npx ts-node types/index.test-d.ts",
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kit-p/fastify-tasks.git"
},
"keywords": [
"fastify",
"tasks"
],
"author": "Kit PANG",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kit-p/fastify-tasks/issues"
},
"homepage": "https://github.com/Kit-p/fastify-tasks#readme",
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^22.5.4",
"cross-env": "^7.0.2",
"fastify": "^5.0.0",
"simple-get": "^4.0.1",
"standard": "^17.0.0",
"tap": "^21.0.1",
"tsd": "^0.31.0"
},
"pre-commit": [
"lint",
"test"
],
"publishConfig": {
"access": "public"
}
}