forked from nettofarah/axios-vcr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 914 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 914 Bytes
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
{
"name": "axios-vcr",
"version": "1.0.2",
"description": "axios-vcr is a set of middlewares for axios that allow you to record and replay requests.",
"main": "index.js",
"homepage": "http://github.com/nettofarah/axios-vcr",
"scripts": {
"test": "mocha test/",
"test-p": "mocha --parallel test/"
},
"bugs": {
"url": "https://github.com/nettofarah/axios-vcr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nettofarah/axios-vcr.git"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"axios",
"vcr",
"test",
"mock",
"http"
],
"author": "Netto Farah",
"license": "MIT",
"devDependencies": {
"axios": "^0.24.0",
"mocha": "^9.1.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"fs-promise": "^2.0.3",
"lodash": "^4.13.1",
"md5": "^2.1.0",
"mkdirp": "^1.0.4"
}
}