@nestjs/jwt
Version:
Nest - modern, fast, powerful node.js web framework (@jwt)
65 lines (64 loc) • 1.84 kB
JSON
{
"name": "@nestjs/jwt",
"version": "8.0.0",
"description": "Nest - modern, fast, powerful node.js web framework (@jwt)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"lib/**/*.ts\" --fix",
"test": "jest --config=jest.json",
"test:watch": "jest --config=jest.json --watch",
"test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
"build": "rm -rf dist && tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prerelease": "npm run build",
"release": "release-it"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "12.1.4",
"jest": "27.0.6",
"ts-jest": "27.0.3",
"reflect-metadata": "0.1.13",
"@nestjs/core": "8.0.0",
"@nestjs/testing": "8.0.0",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "7.30.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"@nestjs/common": "8.0.0",
"@types/node": "14.17.4",
"husky": "7.0.1",
"lint-staged": "11.0.0",
"prettier": "2.3.2",
"release-it": "14.10.0",
"typescript": "4.3.5"
},
"dependencies": {
"@types/jsonwebtoken": "8.5.4",
"jsonwebtoken": "8.5.1"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/nestjs/jwt"
}
}