forked from YeaSoft/fetchutils
-
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) · 878 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 878 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": "@yeasoft/fetchutils",
"version": "0.17.0",
"description": "Useful stuff for fetsching data",
"author": {
"name": "Leo Moll"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bugs": "https://github.com/YeaSoft/fetchutils/issues",
"repository": {
"type": "git",
"url": "https://github.com/YeaSoft/fetchutils.git"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/node": "^15.6.1",
"@yeasoft/baseutils": "^0.40.0",
"deepmerge": "^4.2.2",
"fetch-blob": "^2.1.2",
"form-data": "^4.0.0",
"node-fetch": "^2.6.1",
"query-string": "^7.0.0"
}
}