@clarketm/jwt-cli
Version:
Command line tool for working with JSON Web Tokens (JWT)
80 lines (79 loc) • 1.69 kB
JSON
{
"name": "@clarketm/jwt-cli",
"version": "1.2.0",
"description": "Command line tool for working with JSON Web Tokens (JWT)",
"engines": {
"node": ">=8.11.2"
},
"main": "./lib/jwt.js",
"bin": {
"jwt": "./bin/jwt.js"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE.md"
],
"scripts": {
"prettier": "prettier --write '**/*.{js,json,css,md}'",
"lint": "eslint --fix ./bin ./lib",
"prep": "yarn lint && yarn prettier && yarn test",
"test": "jest",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarketm/jwt-cli.git"
},
"keywords": [
"jwt",
"jsonwebtoken",
"cli",
"command-line",
"command line",
"cl",
"terminal",
"node"
],
"author": "Travis Clarke <travis.m.clarke@gmail.com> (https://www.travismclarke.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/clarketm/jwt-cli/issues"
},
"homepage": "https://github.com/clarketm/jwt-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^2.4.1",
"clipboardy": "^1.2.3",
"commander": "^2.15.1",
"jsonwebtoken": "^8.2.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/shelljs": "^0.8.0",
"eslint": "^4.19.1",
"husky": "^1.0.0-rc.7",
"jest": "^23.0.0",
"lint-staged": "^7.1.2",
"prettier": "^1.12.1",
"shelljs": "^0.8.2"
}
}