jwt-transform
Version:
transform your real jwt token into fake jwt token.
86 lines (85 loc) • 2.02 kB
JSON
{
"name": "jwt-transform",
"version": "0.0.5",
"description": "transform your real jwt token into fake jwt token.",
"main": "dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"clean": "rimraf dist",
"compiler": "npm run clean && tsc --pretty",
"build": "npm run compiler",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier src/**/*.ts --write",
"lint:fix": "npm run format && npm run lint"
},
"author": {
"name": "Restu Wahyu Saputra",
"email": "restuwahyu13@gmail.com",
"mobile": "+6287887242895",
"url": "https://github.com/restuwahyu13"
},
"repository": {
"url": "https://github.com/restuwahyu13/jwt-transform"
},
"homepage": "https://github.com/restuwahyu13/jwt-transform#readme",
"bugs": {
"url": "https://github.com/restuwahyu13/jwt-transform/issues"
},
"license": "MIT",
"engines": {
"node": ">= 16.x.x",
"npm": ">= 8.x.x"
},
"keywords": [
"jwt",
"jwt-transform",
"security",
"encrypt",
"decrypt",
"encode",
"decode",
"browser",
"mobile",
"nodejs",
"javascript",
"typescript",
"cryptography",
"node",
"algorithm",
"base64",
"hex"
],
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^4.3.8",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
}
}