forked from sindresorhus/ky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.34 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
80
{
"name": "ky",
"version": "0.16.1",
"description": "Tiny and elegant HTTP client based on the browser Fetch API",
"license": "MIT",
"repository": "sindresorhus/ky",
"funding": "https://github.com/sindresorhus/ky?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rollup index.js --format=umd --name=ky --file=umd.js",
"prepare": "npm run build",
"test": "xo && npm run build && nyc ava && tsd"
},
"files": [
"index.js",
"index.d.ts",
"umd.js",
"umd.d.ts"
],
"keywords": [
"fetch",
"request",
"requests",
"http",
"https",
"fetching",
"get",
"url",
"curl",
"wget",
"net",
"network",
"ajax",
"api",
"rest",
"xhr",
"browser",
"got",
"axios",
"node-fetch"
],
"devDependencies": {
"abort-controller": "^3.0.0",
"ava": "^1.4.1",
"body": "^5.1.0",
"codecov": "^3.4.0",
"create-test-server": "2.1.1",
"delay": "^4.1.0",
"esm": "^3.2.22",
"node-fetch": "^2.5.0",
"nyc": "^14.1.1",
"puppeteer": "^1.15.0",
"rollup": "^1.27.0",
"tsd": "^0.11.0",
"xo": "^0.25.3"
},
"xo": {
"envs": [
"browser"
],
"globals": [
"globalThis"
]
},
"ava": {
"babel": false,
"compileEnhancements": false,
"require": [
"esm",
"./test/_require"
]
}
}