-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
41 lines (41 loc) · 849 Bytes
/
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
{
"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/"
},
"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.19.0",
"mocha": "^6.2.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"fs-promise": "^0.5.0",
"lodash": "^4.13.1",
"md5": "^2.1.0",
"mkdirp": "^0.5.1"
}
}