forked from lisaogren/axios-cache-adapter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "axios-cache-adapter",
"version": "2.5.0",
"description": "Caching adapter for axios",
"homepage": "https://github.com/RasCarlito/axios-cache-adapter",
"author": {
"name": "Carl Ogren",
"email": "[email protected]",
"url": "https://github.com/RasCarlito"
},
"files": [
"/dist",
"/src",
"/axios-cache-adapter.d.ts"
],
"main": "dist/cache.node.js",
"browser": "dist/cache.js",
"types": "axios-cache-adapter.d.ts",
"runkitExampleFilename": "examples/basic.js",
"keywords": [
"axios",
"cache",
"xhr",
"request"
],
"standard": {
"ignore": [
"/dist",
"/examples"
]
},
"scripts": {
"clean": "rimraf dist",
"lint": "standard | snazzy",
"lint-fix": "standard --fix src/**/*.js test/**/*.js | snazzy",
"build": "npm run clean && webpack && NODE_ENV=production webpack && NODE_BUILD_FOR=node webpack && NODE_ENV=production NODE_BUILD_FOR=node webpack",
"test": "NODE_ENV=test karma start karma.conf.js",
"watch": "NODE_WATCH=true npm test"
},
"repository": "https://github.com/RasCarlito/axios-cache-adapter",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"assert": "^1.4.1",
"babel-loader": "^8.0.4",
"cache-control-esm": "1.0.0",
"codecov": "^3.0.0",
"html-webpack-plugin": "^3.0.6",
"husky": "^1.1.2",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"localforage": "^1.7.2",
"localforage-memoryStorageDriver": "^0.9.2",
"mocha": "^5.0.4",
"mockdate": "^2.0.2",
"puppeteer": "^0.12.0",
"redis-mock": "^0.44.0",
"rimraf": "^2.6.2",
"size-limit": "^0.11.4",
"snazzy": "^7.0.0",
"standard": "^11.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.1",
"axios": "0.18.1"
},
"dependencies": {
"cache-control-esm": "1.0.0",
"lodash": "^4.17.11",
"md5": "^2.2.1"
},
"peerDependencies": {
"axios": "0.18.1"
},
"size-limit": [
{
"path": "./src/index.js"
}
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}