forked from sindresorhus/is-network-error
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 897 Bytes
/
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
{
"name": "@fullstax/is-network-error",
"version": "1.1.0-patch.2",
"description": "Check if a value is a Fetch network error",
"license": "MIT",
"repository": "fllstx/is-network-error",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"types": "./index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"test": "xo && ava && tsd",
"build": "npx rollup index.js --file index.cjs --format cjs"
},
"files": [
"index.js",
"index.d.ts",
"index.cjs"
],
"keywords": [
"network",
"error",
"fetch",
"whatwg",
"detect",
"check",
"typeerror"
],
"devDependencies": {
"ava": "^5.3.1",
"tsd": "^0.29.0",
"xo": "^0.56.0"
}
}