-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 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
{
"name": "axios-http-jwt",
"version": "1.0.4",
"description": "Axios interceptor to store, use, and refresh tokens for authentication.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gryevns/axios-http-jwt.git"
},
"homepage": "https://github.com/gryevns/axios-http-jwt",
"author": "Gary Evans",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"auto": "^10.34.2",
"axios-mock-adapter": "^1.20.0",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"jsonwebtoken": "^8.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"peerDependencies": {
"axios": "^0.26.1"
},
"dependencies": {
"jwt-decode": "^3.1.2"
},
"scripts": {
"build": "tsc",
"start": "tsc -w",
"test": "jest",
"prepack": "tsc"
},
"keywords": [
"axios",
"token",
"jwt",
"http",
"refresh",
"authentication",
"authorization",
"header",
"typescript",
"ts"
],
"auto": {
"plugins": [
"npm",
"released"
],
"onlyPublishWithReleaseLabel": true
},
"bugs": {
"url": "https://github.com/gryevns/axios-http-jwt/issues"
},
"directories": {
"test": "tests"
}
}