UNPKG

1.84 kBJSONView Raw
1{
2 "name": "@nestjs/jwt",
3 "version": "8.0.1",
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 },
20 "peerDependencies": {
21 "@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0"
22 },
23 "devDependencies": {
24 "@commitlint/cli": "17.0.0",
25 "@commitlint/config-angular": "17.0.0",
26 "jest": "28.1.0",
27 "ts-jest": "28.0.2",
28 "reflect-metadata": "0.1.13",
29 "@nestjs/core": "8.4.5",
30 "@nestjs/testing": "8.4.5",
31 "@types/jest": "27.5.1",
32 "@typescript-eslint/eslint-plugin": "5.25.0",
33 "@typescript-eslint/parser": "5.25.0",
34 "eslint": "8.15.0",
35 "eslint-config-prettier": "8.5.0",
36 "eslint-plugin-import": "2.26.0",
37 "@nestjs/common": "8.4.5",
38 "@types/node": "16.11.36",
39 "husky": "8.0.1",
40 "lint-staged": "12.4.1",
41 "prettier": "2.6.2",
42 "release-it": "15.0.0",
43 "typescript": "4.6.4"
44 },
45 "dependencies": {
46 "@types/jsonwebtoken": "8.5.8",
47 "jsonwebtoken": "8.5.1"
48 },
49 "lint-staged": {
50 "*.ts": [
51 "prettier --write"
52 ]
53 },
54 "husky": {
55 "hooks": {
56 "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS",
57 "pre-commit": "lint-staged"
58 }
59 },
60 "repository": {
61 "type": "git",
62 "url": "https://github.com/nestjs/jwt"
63 }
64}