UNPKG

2.08 kBJSONView Raw
1{
2 "name": "@adobe/helix-fetch",
3 "version": "3.1.0",
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": "./node_modules/.bin/eslint .",
9 "semantic-release": "semantic-release"
10 },
11 "mocha": {
12 "timeout": "5000",
13 "recursive": "true",
14 "reporter": "mocha-multi-reporters",
15 "reporter-options": "configFile=.mocha-multi.json"
16 },
17 "engines": {
18 "node": ">=12.0"
19 },
20 "types": "src/index.d.ts",
21 "exports": {
22 "import": "./src/index.mjs",
23 "require": "./src/index.js"
24 },
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/adobe/helix-fetch"
28 },
29 "author": "",
30 "license": "Apache-2.0",
31 "bugs": {
32 "url": "https://github.com/adobe/helix-fetch/issues"
33 },
34 "homepage": "https://github.com/adobe/helix-fetch#readme",
35 "keywords": [
36 "fetch",
37 "whatwg",
38 "Fetch API",
39 "http",
40 "https",
41 "http2",
42 "h2",
43 "promise",
44 "async",
45 "request",
46 "RFC 7234",
47 "7234",
48 "caching",
49 "cache"
50 ],
51 "dependencies": {
52 "debug": "4.3.4",
53 "http-cache-semantics": "4.1.0",
54 "lru-cache": "7.10.2"
55 },
56 "devDependencies": {
57 "@adobe/eslint-config-helix": "1.3.2",
58 "@semantic-release/changelog": "6.0.1",
59 "@semantic-release/git": "10.0.1",
60 "chai": "4.3.6",
61 "chai-as-promised": "7.1.1",
62 "chai-iterator": "3.0.2",
63 "eslint": "8.18.0",
64 "eslint-plugin-header": "3.1.1",
65 "eslint-plugin-import": "2.26.0",
66 "formdata-node": "4.3.3",
67 "lint-staged": "13.0.3",
68 "mocha": "10.0.0",
69 "mocha-multi-reporters": "1.5.1",
70 "nock": "13.2.7",
71 "nyc": "15.1.0",
72 "parse-cache-control": "1.0.1",
73 "pem": "1.14.6",
74 "semantic-release": "19.0.3",
75 "sinon": "14.0.0",
76 "stream-buffers": "3.0.2"
77 },
78 "lint-staged": {
79 "*.js": "eslint"
80 },
81 "config": {
82 "commitizen": {
83 "path": "node_modules/cz-conventional-changelog"
84 },
85 "ghooks": {
86 "pre-commit": "npx lint-staged"
87 }
88 }
89}