1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "content-disposition",
|
3 |
|
|
"description": "Create and parse Content-Disposition header",
|
4 |
|
|
"version": "0.5.3",
|
5 |
|
|
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
|
6 |
|
|
"license": "MIT",
|
7 |
|
|
"keywords": [
|
8 |
|
|
"content-disposition",
|
9 |
|
|
"http",
|
10 |
|
|
"rfc6266",
|
11 |
|
|
"res"
|
12 |
|
|
],
|
13 |
|
|
"repository": "jshttp/content-disposition",
|
14 |
|
|
"dependencies": {
|
15 |
|
|
"safe-buffer": "5.1.2"
|
16 |
|
|
},
|
17 |
|
|
"devDependencies": {
|
18 |
|
|
"deep-equal": "1.0.1",
|
19 |
|
|
"eslint": "5.10.0",
|
20 |
|
|
"eslint-config-standard": "12.0.0",
|
21 |
|
|
"eslint-plugin-import": "2.14.0",
|
22 |
|
|
"eslint-plugin-markdown": "1.0.0-rc.1",
|
23 |
|
|
"eslint-plugin-node": "7.0.1",
|
24 |
|
|
"eslint-plugin-promise": "4.0.1",
|
25 |
|
|
"eslint-plugin-standard": "4.0.0",
|
26 |
|
|
"istanbul": "0.4.5",
|
27 |
|
|
"mocha": "5.2.0"
|
28 |
|
|
},
|
29 |
|
|
"files": [
|
30 |
|
|
"LICENSE",
|
31 |
|
|
"HISTORY.md",
|
32 |
|
|
"README.md",
|
33 |
|
|
"index.js"
|
34 |
|
|
],
|
35 |
|
|
"engines": {
|
36 |
|
|
"node": ">= 0.6"
|
37 |
|
|
},
|
38 |
|
|
"scripts": {
|
39 |
|
|
"lint": "eslint --plugin markdown --ext js,md .",
|
40 |
|
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
41 |
|
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
|
42 |
|
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
|
43 |
|
|
}
|
44 |
|
|
}
|