UNPKG

1.94 kBJSONView Raw
1{
2 "name": "@adobe/fetch",
3 "version": "3.6.1",
4 "description": "Light-weight Fetch implementation transparently supporting both HTTP/1(.1) and HTTP/2",
5 "main": "src/index.js",
6 "scripts": {
7 "test": "nyc mocha",
8 "lint": "eslint .",
9 "semantic-release": "semantic-release",
10 "prepare": "husky install"
11 },
12 "mocha": {
13 "timeout": "10000",
14 "recursive": "true",
15 "reporter": "mocha-multi-reporters",
16 "reporter-options": "configFile=.mocha-multi.json"
17 },
18 "engines": {
19 "node": ">=12.0"
20 },
21 "types": "src/index.d.ts",
22 "exports": {
23 "import": "./src/index.mjs",
24 "require": "./src/index.js"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/adobe/fetch"
29 },
30 "author": "",
31 "license": "Apache-2.0",
32 "bugs": {
33 "url": "https://github.com/adobe/fetch/issues"
34 },
35 "homepage": "https://github.com/adobe/fetch#readme",
36 "keywords": [
37 "fetch",
38 "whatwg",
39 "Fetch API",
40 "http",
41 "https",
42 "http2",
43 "h2",
44 "promise",
45 "async",
46 "request",
47 "RFC 7234",
48 "7234",
49 "caching",
50 "cache"
51 ],
52 "dependencies": {
53 "debug": "4.3.4",
54 "http-cache-semantics": "4.1.1",
55 "lru-cache": "7.17.0"
56 },
57 "devDependencies": {
58 "@semantic-release/changelog": "6.0.2",
59 "@semantic-release/git": "10.0.1",
60 "chai": "4.3.7",
61 "chai-as-promised": "7.1.1",
62 "chai-bytes": "0.1.2",
63 "chai-iterator": "3.0.2",
64 "eslint": "8.34.0",
65 "eslint-config-airbnb-base": "15.0.0",
66 "eslint-plugin-header": "3.1.1",
67 "eslint-plugin-import": "2.27.5",
68 "formdata-node": "4.4.1",
69 "husky": "8.0.3",
70 "lint-staged": "13.1.2",
71 "mocha": "10.2.0",
72 "mocha-multi-reporters": "1.5.1",
73 "nock": "13.3.0",
74 "nyc": "15.1.0",
75 "parse-cache-control": "1.0.1",
76 "semantic-release": "20.1.0",
77 "sinon": "15.0.1",
78 "stream-buffers": "3.0.2"
79 },
80 "lint-staged": {
81 "*.js": "eslint"
82 }
83}