-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
82 lines (82 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@adobe/fetch",
"version": "4.1.11",
"description": "Light-weight Fetch implementation transparently supporting both HTTP/1(.1) and HTTP/2",
"main": "./src/index.js",
"module": "./src/index.js",
"sideEffects": false,
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "c8 mocha",
"test-ci": "c8 mocha",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky"
},
"mocha": {
"timeout": "5000",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"engines": {
"node": ">=14.16"
},
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/adobe/fetch"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/fetch/issues"
},
"homepage": "https://github.com/adobe/fetch#readme",
"keywords": [
"fetch",
"whatwg",
"Fetch API",
"http",
"https",
"http2",
"h2",
"promise",
"async",
"request",
"RFC 7234",
"7234",
"caching",
"cache"
],
"dependencies": {
"debug": "4.4.0",
"http-cache-semantics": "4.1.1",
"lru-cache": "7.18.3"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "10.1.3",
"chai": "5.1.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"formdata-node": "6.0.3",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"mocha": "11.1.0",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"parse-cache-control": "1.0.1",
"parse-multipart-data": "1.5.0",
"semantic-release": "24.2.1",
"sinon": "19.0.2",
"stream-buffers": "3.0.3"
},
"lint-staged": {
"*.js": "eslint"
}
}