UNPKG

1.52 kBJSONView Raw
1{
2 "name": "ky",
3 "version": "0.26.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 "type": "module",
14 "engines": {
15 "node": ">=12"
16 },
17 "scripts": {
18 "test": "xo && ava && tsd"
19 },
20 "files": [
21 "index.js",
22 "index.d.ts"
23 ],
24 "keywords": [
25 "fetch",
26 "request",
27 "requests",
28 "http",
29 "https",
30 "fetching",
31 "get",
32 "url",
33 "curl",
34 "wget",
35 "net",
36 "network",
37 "ajax",
38 "api",
39 "rest",
40 "xhr",
41 "browser",
42 "got",
43 "axios",
44 "node-fetch"
45 ],
46 "devDependencies": {
47 "abort-controller": "^3.0.0",
48 "ava": "^3.15.0",
49 "body": "^5.1.0",
50 "busboy": "^0.3.1",
51 "create-test-server": "2.1.1",
52 "delay": "^4.1.0",
53 "form-data": "^3.0.0",
54 "node-fetch": "^2.5.0",
55 "nyc": "^15.0.0",
56 "puppeteer": "^5.5.0",
57 "tsd": "^0.13.1",
58 "xo": "^0.25.3"
59 },
60 "sideEffects": false,
61 "xo": {
62 "envs": [
63 "browser"
64 ],
65 "globals": [
66 "globalThis"
67 ],
68 "rules": {
69 "import/no-useless-path-segments": "off",
70 "unicorn/import-index": "off",
71 "import/extensions": "off"
72 }
73 },
74 "ava": {
75 "require": [
76 "./test/_require"
77 ],
78 "nonSemVerExperiments": {
79 "nextGenConfig": true
80 }
81 },
82 "tsd": {
83 "compilerOptions": {
84 "lib": [
85 "es2019",
86 "dom"
87 ]
88 }
89 },
90 "nyc": {
91 "reporter": [
92 "text",
93 "lcov"
94 ]
95 }
96}