-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "@mountainpass/axios-cache-interceptor",
"version": "1.0.8",
"description": "A clean, minimal implementation of common HTTP caching mechanisms.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Mountain Pass <[email protected]>",
"contributors": [
"Nick Grealy <[email protected]>",
"Nick Grealy <[email protected]>"
],
"keywords": [
"axios",
"cache",
"interceptor",
"stale-while-revalidate",
"etag",
"if-modified-since",
"if-none-match"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc --build",
"prepare": "npm run build",
"initialPublish": "npm publish --access public",
"bumpVersion": "npm version patch --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountain-pass/axios-cache-interceptor.git"
},
"bugs": {
"url": "https://github.com/mountain-pass/axios-cache-interceptor/issues"
},
"homepage": "https://github.com/mountain-pass/axios-cache-interceptor#readme",
"peerDependencies": {
"axios": "^1"
},
"devDependencies": {
"@types/axios": "0.14.0",
"axios": "1.4.0",
"typescript": "5.1.6"
},
"files": [
"dist"
]
}