-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 962 Bytes
/
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
{
"name": "fastify-threads",
"version": "2.0.0",
"description": "A Fastify plugin that exposes threads.js functionality",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"fastify",
"worker_threads",
"threads.js"
],
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "standard | snazzy && tap test.js",
"test:ci": "standard | snazzy && tap test.js --coverage-report=lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phr3nzy/fastify-threads"
},
"author": "Osama Adil <osama.adil47@protonmail.com>",
"homepage": "https://github.com/phr3nzy/fastify-threads#readme",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.1",
"fastify": "^4.3.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"typescript": "^5.1.3"
},
"dependencies": {
"fastify-plugin": "^4.0.0",
"threads": "^1.6.4"
}
}