-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.13 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@node-fetch/universal",
"version": "1.0.0",
"description": "Universal node-fetch wrapper",
"main": "index.js",
"module": "esm.js",
"browser": "esm.js",
"sideEffects": false,
"exports": {
"import": "esm.js",
"require": "index.js"
},
"files": [
"index.js",
"esm.js",
"*.d.ts"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "https://github.com/node-fetch/universal.git"
},
"keywords": [
"fetch",
"http",
"promise",
"node-fetch",
"universal",
"isomorphic",
"cross-fetch",
"isomorphic-fetch",
"browser-fetch"
],
"author": "Antoni Kepinski <a@kepinski.me> (https://kepinski.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-fetch/universal/issues"
},
"homepage": "https://github.com/node-fetch/universal",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/node-fetch"
},
"devDependencies": {
"ava": "^3.8.2",
"node-fetch": "^3.0.0-beta.5",
"xo": "^0.30.0"
},
"peerDependencies": {
"node-fetch": ">=3.0.0-beta.5"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}