-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "refresh-fetch",
"description": "Wrapper around fetch capable of graceful authentication token refreshing.",
"version": "0.9.0",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepublishOnly": "npm run clean && npm run lint && npm test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/vlki/refresh-fetch.git"
},
"files": [
"lib"
],
"keywords": [
"api",
"fetch",
"auth",
"token",
"refresh"
],
"author": "Jan Vlcek <vlki@vlki.cz>",
"license": "MIT",
"homepage": "https://github.com/vlki/refresh-fetch",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.3",
"@babel/preset-flow": "^7.24.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"flow-bin": "^0.232.0",
"jest": "^29.7.0",
"node-fetch": "^2.7.0",
"rimraf": "^5.0.5"
}
}