-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.69 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@exodus/fetch",
"version": "1.7.1",
"description": "Wrapper around global fetch / node-fetch for Electron and React",
"repository": {
"type": "git",
"url": "https://github.com/ExodusMovement/fetch.git"
},
"bugs": {
"url": "https://github.com/ExodusMovement/fetch/issues"
},
"exports": {
"./fetch": {
"browser": "./fetch.browser.js",
"react-native": "./fetch.native.js",
"node": "./fetch.js",
"default": "./fetch.js"
},
"./experimental/fetchival": {
"browser": "./experimental/fetchival.js",
"react-native": "./experimental/fetchival.js",
"node": "./experimental/fetchival.js",
"default": "./experimental/fetchival.js"
},
"./experimental/create-fetchival": {
"default": "./experimental/create-fetchival.js"
},
"./fetchival": {
"browser": "./fetchival.browser.js",
"react-native": "./fetchival.js",
"node": "./fetchival.js",
"default": "./fetchival.js"
},
"./create-fetchival": {
"default": "./create-fetchival.js"
},
"./wretch": {
"browser": "./wretch.browser.js",
"react-native": "./wretch.js",
"node": "./wretch.js",
"default": "./wretch.js"
},
"./url": {
"browser": "./url.js",
"react-native": "./url.js",
"node": "./url.js",
"default": "./url.js"
}
},
"browser": {
"./fetch.js": "./fetch.browser.js",
"./fetchival.js": "./fetchival.browser.js",
"./index.js": "./index.browser.js",
"./wretch.js": "./wretch.browser.js"
},
"react-native": {
"./fetch.js": "./fetch.native.js"
},
"files": [
"experimental/fetchival.js",
"experimental/create-fetchival.js",
"core.js",
"fetch.browser.js",
"fetch.native.js",
"fetch.js",
"create-fetchival.js",
"fetchival.browser.js",
"fetchival.js",
"wretch.browser.js",
"wretch.js",
"url.js",
"index.browser.js",
"index.js"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write '**/*.{md,yml}'",
"test": "tape test/*.js | tap-spec"
},
"author": "Exodus Movement Inc.",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.0",
"wretch": "^1.5.2"
},
"devDependencies": {
"@exodus/eslint-config": "^5.12.0",
"@exodus/prettier": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^9.2.3",
"@types/tape": "^5.6.0",
"conventional-changelog-conventionalcommits": "^6.0.0",
"eslint": "^8.49.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.3.1"
},
"prettier": "@exodus/prettier"
}