generated from ChainSafe/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.61 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
53
54
55
{
"name": "fastify-sse-v2",
"version": "4.2.1",
"packageManager": "yarn@1.22.19",
"description": "Fastify plugin for sending server side events.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"clean": "rm -rf lib",
"lint": "eslint src/",
"check-types": "tsc --noEmit",
"prepublishOnly": "yarn run build",
"prebuild": "yarn run clean",
"build": "tsc -p tsconfig.build.json --outDir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodefactoryio/fastify-sse-v2.git"
},
"author": "Marin Petrunić <marin@nodefactory.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodefactoryio/fastify-sse-v2/issues"
},
"homepage": "https://github.com/nodefactoryio/fastify-sse-v2#readme",
"devDependencies": {
"@chainsafe/eslint-config": "^2.0.0",
"@types/chai": "^4.1.7",
"@types/eventsource": "^1.1.2",
"@types/mocha": "^10.0.1",
"@types/node": "^16.0.0",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"eslint": "8.28.0",
"eventsource": "^1.0.7",
"fastify": "^4.10.2",
"mocha": "^10.2.0",
"sinon": "^9.0.2",
"ts-node": "^8.3.0",
"typescript": "~4.7"
},
"dependencies": {
"fastify-plugin": "^4.3.0",
"it-pushable": "^1.4.2",
"it-to-stream": "^1.0.0"
},
"peerDependencies": {
"fastify": ">=4"
}
}