-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.09 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
{
"name": "fetch-friends",
"version": "1.0.3",
"description": "Common utils for the Fetch API",
"homepage": "https://github.com/manuscriptmastr/fetch-friends#readme",
"bugs": {
"url": "https://github.com/manuscriptmastr/fetch-friends/issues"
},
"type": "module",
"main": "./cjs/index.cjs",
"module": "./src/index.js",
"exports": {
"require": "./cjs/index.cjs",
"import": "./src/index.js",
"default": "./src/index.js"
},
"scripts": {
"test": "ava --verbose",
"build": "rollup --config"
},
"author": "Joshua Martin",
"license": "ISC",
"keywords": [
"fetch",
"functional",
"node-fetch",
"abort",
"timeout",
"headers",
"method",
"options",
"json",
"body",
"response",
"request",
"API",
"composable",
"decorate",
"utils"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"ava": "^3.15.0",
"nock": "^13.0.7",
"node-fetch": "^2.6.1"
},
"dependencies": {
"abort-controller": "^3.0.0",
"ramda": "^0.27.1"
}
}