1
|
{
|
2
|
"name": "send",
|
3
|
"description": "Better streaming static file server with Range and conditional-GET support",
|
4
|
"version": "0.17.1",
|
5
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
6
|
"contributors": [
|
7
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
8
|
"James Wyatt Cready <jcready@gmail.com>",
|
9
|
"Jesús Leganés Combarro <piranna@gmail.com>"
|
10
|
],
|
11
|
"license": "MIT",
|
12
|
"repository": "pillarjs/send",
|
13
|
"keywords": [
|
14
|
"static",
|
15
|
"file",
|
16
|
"server"
|
17
|
],
|
18
|
"dependencies": {
|
19
|
"debug": "2.6.9",
|
20
|
"depd": "~1.1.2",
|
21
|
"destroy": "~1.0.4",
|
22
|
"encodeurl": "~1.0.2",
|
23
|
"escape-html": "~1.0.3",
|
24
|
"etag": "~1.8.1",
|
25
|
"fresh": "0.5.2",
|
26
|
"http-errors": "~1.7.2",
|
27
|
"mime": "1.6.0",
|
28
|
"ms": "2.1.1",
|
29
|
"on-finished": "~2.3.0",
|
30
|
"range-parser": "~1.2.1",
|
31
|
"statuses": "~1.5.0"
|
32
|
},
|
33
|
"devDependencies": {
|
34
|
"after": "0.8.2",
|
35
|
"eslint": "5.16.0",
|
36
|
"eslint-config-standard": "12.0.0",
|
37
|
"eslint-plugin-import": "2.17.2",
|
38
|
"eslint-plugin-markdown": "1.0.0",
|
39
|
"eslint-plugin-node": "8.0.1",
|
40
|
"eslint-plugin-promise": "4.1.1",
|
41
|
"eslint-plugin-standard": "4.0.0",
|
42
|
"istanbul": "0.4.5",
|
43
|
"mocha": "6.1.4",
|
44
|
"supertest": "4.0.2"
|
45
|
},
|
46
|
"files": [
|
47
|
"HISTORY.md",
|
48
|
"LICENSE",
|
49
|
"README.md",
|
50
|
"index.js"
|
51
|
],
|
52
|
"engines": {
|
53
|
"node": ">= 0.8.0"
|
54
|
},
|
55
|
"scripts": {
|
56
|
"lint": "eslint --plugin markdown --ext js,md .",
|
57
|
"test": "mocha --check-leaks --reporter spec --bail",
|
58
|
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --check-leaks --reporter spec",
|
59
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --reporter dot"
|
60
|
}
|
61
|
}
|