UNPKG

jwt-fp

Version:

A wrapper on top of jsonwebtoken package that uses data structures from fp-ts

54 lines (53 loc) 1.46 kB
{ "name": "jwt-fp", "version": "1.0.4", "description": "A wrapper on top of jsonwebtoken package that uses data structures from fp-ts", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "coveralls": "jest --coverage --config jestconfig.json && cat ./coverage/lcov.info | coveralls" }, "repository": { "type": "git", "url": "https://github.com/vieiralucas/jwt-fp" }, "bugs": { "url": "https://github.com/vieiralucas/jwt-fp/issues" }, "keywords": [ "jwt", "fp", "ts-fp", "ts", "typescript", "jsonwebtoken", "blockchain" ], "author": "Lucas Vieira <vieiralucas4@gmail.com>", "license": "MIT", "devDependencies": { "@types/jest": "^24.0.11", "@types/jsonwebtoken": "^8.3.2", "coveralls": "^3.0.3", "jest": "^24.5.0", "prettier": "^1.16.4", "ts-jest": "^24.0.0", "tslint": "^5.14.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.3.3333" }, "dependencies": { "fp-ts": "^2.0.3", "io-ts": "^2.0.0", "jsonwebtoken": "^8.5.0" } }