-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1001 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
{
"name": "insomnia-plugin-jwt-cookie-auth-token",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"insomnia": {
"name": "jwt-cookie-auth-token",
"displayName": "Cookie Auth Token Retriever",
"description": "Automatically retrieves auth tokens from cookies allowing their use in requests. Will automatically refresh tokens when necessary"
},
"repository": {
"type": "git",
"url": "https://github.com/jpfifer/insomnia-plugin-cookie-auth-token.git"
},
"homepage": "https://github.com/jpfifer/insomnia-plugin-cookie-auth-token",
"bugs": {
"url": "https://github.com/jpfifer/insomnia-plugin-cookie-auth-token/issues"
},
"keywords": [
"insomnia"
],
"author": "Justin Pfifer",
"license": "ISC",
"dependencies": {
"iconv-lite": "^0.4.19"
},
"devDependencies": {
"typescript": "^4.0.3",
"@types/node": "^14.0.13",
"prettier": "^2.1.2"
}
}