UNPKG

1.73 kBJSONView Raw
1{
2 "name": "@nestjs/jwt",
3 "version": "10.2.0",
4 "description": "Nest - modern, fast, powerful node.js web framework (@jwt)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "scripts": {
8 "format": "prettier --write \"**/*.ts\"",
9 "lint": "eslint \"lib/**/*.ts\" --fix",
10 "test": "jest --config=jest.json",
11 "test:watch": "jest --config=jest.json --watch",
12 "test:coverage": "jest --config=jest.json --coverage --coverageDirectory=coverage",
13 "build": "rm -rf dist && tsc -p tsconfig.json",
14 "precommit": "lint-staged",
15 "prepublish:npm": "npm run build",
16 "publish:npm": "npm publish --access public",
17 "prerelease": "npm run build",
18 "release": "release-it",
19 "prepare": "husky install"
20 },
21 "peerDependencies": {
22 "@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0"
23 },
24 "devDependencies": {
25 "@commitlint/cli": "18.2.0",
26 "@commitlint/config-angular": "18.1.0",
27 "@nestjs/common": "10.2.8",
28 "@nestjs/core": "10.2.8",
29 "@nestjs/testing": "10.2.8",
30 "@types/jest": "29.5.8",
31 "@types/node": "20.9.0",
32 "@typescript-eslint/eslint-plugin": "6.10.0",
33 "@typescript-eslint/parser": "6.10.0",
34 "eslint": "8.53.0",
35 "eslint-config-prettier": "9.0.0",
36 "eslint-plugin-import": "2.29.0",
37 "husky": "8.0.3",
38 "jest": "29.7.0",
39 "lint-staged": "15.0.2",
40 "prettier": "3.0.3",
41 "reflect-metadata": "0.1.13",
42 "release-it": "16.2.1",
43 "rxjs": "7.8.1",
44 "ts-jest": "29.1.1",
45 "typescript": "5.2.2"
46 },
47 "dependencies": {
48 "@types/jsonwebtoken": "9.0.5",
49 "jsonwebtoken": "9.0.2"
50 },
51 "lint-staged": {
52 "**/*.{ts,json}": []
53 },
54 "repository": {
55 "type": "git",
56 "url": "https://github.com/nestjs/jwt"
57 }
58}