-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "content-disposition-parser",
"version": "1.0.2",
"description": "Parse Content-Disposition HTTP header. No dependencies, no errors, just parse.",
"main": "index.js",
"files": [],
"scripts": {
"dev": "ava --verbose --watch",
"test": "eslint . && nyc --reporter=lcov --reporter=text-summary ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yurks/content-disposition-parser.git"
},
"keywords": [
"content-disposition",
"header",
"parser",
"http",
"express",
"res",
"js",
"node",
"browser",
"js"
],
"engines": {
"node": ">= 10"
},
"author": "Yurk Sha (http://yurks.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yurks/content-disposition-parser/issues"
},
"homepage": "https://github.com/yurks/content-disposition-parser#readme",
"devDependencies": {
"ava": "^3.15.0",
"coveralls": "^3.1.0",
"eslint": "^7.21.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"nyc": "^15.1.0"
}
}