-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "web-fetch-client",
"version": "0.1.9",
"description": "Simple REST client for web `fetch` module. Adds retries and timeout support to `fetch` module.",
"author": "Will Tesler",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/wtesler/web-fetch-client.git"
},
"homepage": "https://github.com/wtesler/web-fetch-client",
"keywords": [
"fetch",
"client",
"rest"
],
"scripts": {
"build": "npm run clean && babel src --out-dir dist --copy-files",
"clean": "rimraf dist"
},
"dependencies": {
},
"peerDependencies": {
},
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.24.9",
"@babel/preset-env": "7.24.8",
"eslint": "8.20.0",
"eslint-plugin-promise": "6.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"babel": {
"presets": [
["@babel/preset-env", { "modules": false }]
],
"plugins": []
},
"browserslist": [
">0.25%",
"not dead"
]
}