forked from zphhhhh/axios-localstorage-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "axios-localstorage-adapter",
"version": "0.4.1",
"description": "🚀Caching adapter for axios. Store request results in localStorage to prevent unneeded network requests. Just 1 KB.",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zphhhhh/axios-localstorage-adapter.git"
},
"keywords": [
"axios",
"adapter",
"cache",
"localstorage",
"persistent"
],
"author": "zphhhhh",
"license": "MIT",
"bugs": {
"url": "https://github.com/zphhhhh/axios-localstorage-adapter/issues"
},
"homepage": "https://github.com/zphhhhh/axios-localstorage-adapter#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"axios": "^0.19.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {}
}