-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"name": "resilient-fetch-client",
"version": "0.3.1",
"description": "An http client based on native fetch with added resilience features and caching.",
"private": true,
"type": "module",
"types": "./dist/client.d.ts",
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"test": "ava",
"build_test": "npm run build && npm run test",
"docs": "npx typedoc ./src/client.ts"
},
"exports": {
".": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
}
},
"./cache": {
"import": {
"types": "./dist/cache.d.ts",
"default": "./dist/cache.js"
}
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"keywords": [
"fetch",
"request",
"http",
"resilient",
"client"
],
"author": "cnoelle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cnoelle/resilient-fetch-client.git"
},
"bugs": {
"url": "https://github.com/cnoelle/resilient-fetch-client/issues"
},
"homepage": "https://github.com/cnoelle/resilient-fetch-client",
"devDependencies": {
"ava": "^6.1.3",
"del-cli": "^5.1.0",
"fake-indexeddb": "^6.0.0",
"typedoc": "^0.26.7",
"typescript": "^5.5.4"
},
"dependencies": {
"cockatiel": "^3.2.1",
"is-network-error": "^1.1.0",
"lru-cache": "^11.0.1",
"lru-cache-idb": "^0.5.1"
},
"ava": {
"files": [
"test/**/*",
"!test/helpers/**/*"
]
}
}