-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "serve-buffer",
"description": "Serve a Buffer via HTTP, with Range and conditional-GET support.",
"version": "3.0.3",
"main": "index.js",
"files": [
"index.js",
"lib",
"example.js"
],
"keywords": [
"buffer",
"http",
"serve",
"in-memory",
"range"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/serve-buffer",
"repository": "derhuerst/serve-buffer",
"bugs": "https://github.com/derhuerst/serve-buffer/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"debug": "^4.1.1",
"fresh": "^0.5.2",
"negotiator": "^0.6.2",
"range-parser": "^1.2.1"
},
"devDependencies": {
"chalk": "^4.1.2",
"csv-stringify": "^6.0.1",
"eslint": "^8.2.0",
"etag": "^1.8.1",
"execa": "^5.1.1",
"get-stream": "^6.0.0",
"tap-min": "^2.0.0",
"tape": "^5.0.1",
"tape-promise": "^4.0.0"
},
"scripts": {
"benchmark": "env NODE_ENV=production node benchmark/index.js",
"lint": "eslint .",
"test": "env NODE_ENV=dev node test.js | tap-min",
"prepublishOnly": "npm run lint && npm test"
}
}