forked from fastify/fastify-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "fastify-websocket",
"version": "4.2.0",
"description": "basic websocket support for fastify",
"main": "index.js",
"types": "index.d.ts",
"tsd": {
"directory": "./test/types"
},
"scripts": {
"lint": "standard | snazzy",
"unit": "tap --100 \"test/*.js\"",
"test:js": "npm run lint && npm run unit",
"test:ts": "tsd",
"test": "npm run lint && npm run test:js && npm run test:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-websocket.git"
},
"keywords": [
"fastify",
"websocket"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-websocket/issues"
},
"homepage": "https://github.com/fastify/fastify-websocket#readme",
"devDependencies": {
"@types/ws": "^8.2.2",
"fastify": "^3.25.3",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"split2": "^4.1.0",
"standard": "^16.0.4",
"tap": "^16.0.0",
"tsd": "^0.19.1"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"ws": "^8.0.0"
}
}