-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "fastify-chunk-view",
"version": "1.1.2",
"description": "A Fastify plugin that chunks content as it becomes available.",
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./cjs/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/grommett/fastify-chunk-view.git"
},
"scripts": {
"test": "c8 --reporter=lcov tap --no-coverage",
"test:report": "c8 tap --no-coverage",
"test:html": "c8 --reporter=html tap --no-coverage",
"lint": "eslint ./*.js ./examples/**/*.js",
"cjs": "rollup index.js --file cjs/index.cjs --format cjs --exports auto --external stream,fastify-plugin"
},
"keywords": [
"fastify",
"progressive html",
"progressive render",
"pssr"
],
"author": "",
"license": "ISC",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"c8": "^7.11.0",
"eslint": "^8.5.0",
"fastify": "^3.25.2",
"rollup": "^2.62.0",
"simple-get": "^4.0.0",
"tap": "^16.2.0"
}
}