-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.16 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": "send-seekable",
"version": "1.0.4",
"description": "Express.js/connect middleware for serving partial content (206) requests for buffers or streams",
"main": "send-seekable.js",
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "mocha",
"develop": "mocha --watch --reporter min"
},
"repository": {
"type": "git",
"url": "glebec/send-seekable.git"
},
"keywords": [
"partial",
"content",
"206",
"seek",
"seekable",
"stream",
"buffer",
"express",
"middleware",
"range",
"ranges",
"bytes",
"accept-ranges",
"content-range"
],
"author": "Gabriel Lebec <[email protected]> (https://github.com/glebec)",
"license": "MIT",
"bugs": {
"url": "https://github.com/glebec/express-send-seekable/issues"
},
"homepage": "https://github.com/glebec/express-send-seekable#readme",
"dependencies": {
"range-parser": "~1.2.0",
"range-stream": "~1.1.0",
"simple-bufferstream": "~1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"express": "^4.14.0",
"mocha": "^3.3.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"supertest": "^2.0.1"
}
}