-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 KB
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
{
"version": "3.2.0",
"name": "fetch-vcr",
"description": "Stop mocking HTTP Requests. Just record and then play them back",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"pretest": "./script/clean-for-test",
"test": "ava",
"debug": "DEBUG=true node --inspect --debug-brk ./node_modules/ava/profile.js ./test/index.js",
"build-browser": "rollup --config rollup.config.js"
},
"dependencies": {
"node-fetch": "^2.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"ava": "^2.0.0",
"jsdom": "^14.0.0",
"rollup": "^1.1.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"standard": "^14.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philschatz/fetch-vcr.git"
},
"keywords": [
"fetch",
"fixture",
"cassette",
"vcr"
],
"browser": {
"./lib/adapter/fetch-node.js": "./lib/adapter/fetch-browser.js",
"./lib/adapter/files-node.js": "./lib/adapter/files-browser.js",
"./lib/adapter/response-node.js": "./lib/adapter/response-browser.js"
},
"author": "Philip Schatz",
"license": "MIT",
"bugs": {
"url": "https://github.com/philschatz/fetch-vcr/issues"
},
"homepage": "https://github.com/philschatz/fetch-vcr#readme"
}