-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 871 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
{
"name": "fastify-protobufjs",
"version": "1.0.4",
"description": "A simple fastify-plugin to serialize binary data to protobuf",
"main": "index.js",
"scripts": {
"lint": "npx standard --fix",
"test": "tap test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kenriortega/fastify-protobufjs.git"
},
"bugs": {
"url": "https://github.com/kenriortega/fastify-protobufjs/issues"
},
"homepage": "https://github.com/kenriortega/fastify-protobufjs",
"keywords": [
"fastify"
],
"author": "kenriortega",
"license": "ISC",
"dependencies": {
"fastify-accepts-serializer": "^3.2.0",
"fastify-plugin": "^3.0.0",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"fastify": "^3.15.1",
"pino-pretty": "^4.8.0",
"tap": "^15.0.9"
},
"tap": {
"check-coverage": false
}
}