-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "cachios",
"version": "4.0.0",
"description": "Simple axios cache wrapper using node-cache",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"coveralls": "cat tests/coverage/lcov.info | coveralls"
},
"jest": {
"testURL": "http://127.0.0.1:11888/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "tests/coverage",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbinoDrought/cachios.git"
},
"keywords": [
"axios",
"cache"
],
"author": "AlbinoDrought",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlbinoDrought/cachios/issues"
},
"homepage": "https://github.com/AlbinoDrought/cachios#readme",
"dependencies": {
"axios": "^0.27.0 || ^0.26.0 || ^0.25.0 || ^0.24.0 || ^0.23.0 || ^0.22.0 || ^0.21.0 || ^0.20.0 || ^0.19.0 || ^0.18.0",
"node-cache": "^5.0.0 || ^4.1.1",
"object-hash": "^2.0.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.20.0",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"jest": "^27.2.5"
}
}