forked from troyharvey/jwt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 931 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
36
37
38
39
40
{
"name": "jwt-cli",
"version": "1.2.3",
"description": "CLI program for decoding JSON Web Tokens (JWT)",
"repository": {
"type": "git",
"url": "https://github.com/troyharvey/jwt-cli.git"
},
"main": "jwt.js",
"bin": {
"jwt": "bin/jwt.js"
},
"dependencies": {
"colors": "1.x",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"format-json": "1.x",
"jsonwebtoken": "8.x",
"minimist": "^1.2.5",
"moment": "2.x"
},
"keywords": [
"jwt",
"json",
"decode",
"json-web-token",
"base64"
],
"author": "Troy Harvey <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "2.0.2"
}
}