-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
47
48
49
50
51
52
53
54
{
"name": "merge-headers",
"version": "1.1.1",
"description": "Easily merge HTTP headers",
"main": "dist",
"scripts": {
"test": "tsc && standard && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whitecrownclown/merge-headers.git"
},
"keywords": [
"headers",
"request",
"http",
"merge",
"remove",
"delete",
"header"
],
"ava": {
"require": [
"./test/_polyfills.js"
]
},
"standard": {
"globals": [
"Headers"
]
},
"author": "Daniel Andrei",
"license": "MIT",
"bugs": {
"url": "https://github.com/whitecrownclown/merge-headers/issues"
},
"homepage": "https://github.com/whitecrownclown/merge-headers#readme",
"devDependencies": {
"@types/node": "^16.10.1",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"fetch-headers": "^2.0.0",
"standard": "^16.0.3",
"typescript": "^4.4.3"
},
"directories": {
"test": "test"
}
}