-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
79 lines (79 loc) · 1.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "ky-universal",
"version": "0.8.1",
"description": "Use Ky in both Node.js and browsers",
"license": "MIT",
"repository": "sindresorhus/ky-universal",
"funding": "https://github.com/sindresorhus/ky-universal?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=10.17"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"keywords": [
"ky",
"universal",
"isomorphic",
"browser",
"browsers",
"node",
"react",
"vue",
"ssr",
"fetch",
"request",
"requests",
"http",
"https",
"fetching",
"get",
"url",
"curl",
"wget",
"net",
"network",
"ajax",
"api",
"rest",
"xhr",
"browser",
"got",
"axios",
"node-fetch"
],
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "3.0.0-beta.7"
},
"devDependencies": {
"ava": "^2.4.0",
"ky": "^0.17.0",
"xo": "^0.25.3"
},
"peerDependencies": {
"ky": ">=0.17.0",
"web-streams-polyfill": ">=2.0.0"
},
"peerDependenciesMeta": {
"web-streams-polyfill": {
"optional": true
}
},
"browser": "browser.js",
"ava": {
"register": [
"."
]
}
}