UNPKG

1.4 kBJSONView Raw
1{
2 "name": "ky",
3 "version": "0.20.0",
4 "description": "Tiny and elegant HTTP client based on the browser Fetch API",
5 "license": "MIT",
6 "repository": "sindresorhus/ky",
7 "funding": "https://github.com/sindresorhus/ky?sponsor=1",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "engines": {
14 "node": ">=10"
15 },
16 "scripts": {
17 "build": "rollup index.js --format=umd --name=ky --file=umd.js",
18 "prepare": "npm run build",
19 "test": "xo && npm run build && nyc ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts",
24 "umd.js",
25 "umd.d.ts"
26 ],
27 "keywords": [
28 "fetch",
29 "request",
30 "requests",
31 "http",
32 "https",
33 "fetching",
34 "get",
35 "url",
36 "curl",
37 "wget",
38 "net",
39 "network",
40 "ajax",
41 "api",
42 "rest",
43 "xhr",
44 "browser",
45 "got",
46 "axios",
47 "node-fetch"
48 ],
49 "devDependencies": {
50 "abort-controller": "^3.0.0",
51 "ava": "^3.2.0",
52 "body": "^5.1.0",
53 "busboy": "^0.3.1",
54 "codecov": "^3.6.4",
55 "create-test-server": "2.1.1",
56 "delay": "^4.1.0",
57 "esm": "^3.2.22",
58 "form-data": "^3.0.0",
59 "node-fetch": "^2.5.0",
60 "nyc": "^15.0.0",
61 "puppeteer": "^3.0.4",
62 "rollup": "^2.10.2",
63 "tsd": "^0.11.0",
64 "xo": "^0.25.3"
65 },
66 "sideEffects": false,
67 "xo": {
68 "envs": [
69 "browser"
70 ],
71 "globals": [
72 "globalThis"
73 ]
74 },
75 "ava": {
76 "require": [
77 "esm",
78 "./test/_require"
79 ]
80 }
81}