forked from ducktors/fastify-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
51
52
{
"name": "fastify-socket.io",
"version": "0.0.3",
"description": "Fastify plugin for socket.io",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test": "npm run lint && npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "tap --100 test/*.test.js"
},
"author": "Alessandro Magionami - @alemagio",
"repository": {
"type": "git",
"url": "git+https://github.com/alemagio/fastify-socket.io.git"
},
"license": "MIT",
"dependencies": {
"fastify-plugin": "^2.3.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/node": "^14.6.0",
"@types/socket.io": "^2.1.11",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"fastify": "^3.2.1",
"fastify-tsconfig": "^1.0.0",
"standard": "^14.3.4",
"tap": "^14.10.8",
"ts-standard": "^9.0.0",
"tsd": "^0.13.1",
"typescript": "^3.9.7"
},
"keywords": [
"fastify",
"socket.io"
],
"tsd": {
"directory": "test"
},
"files": [
"index.d.ts"
],
"ts-standard": {
"ignore": [
"examples"
]
}
}