UNPKG

1.84 kBJSONView Raw
1{
2 "name": "@nestjs/jwt",
3 "version": "8.0.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 },
20 "peerDependencies": {
21 "@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0"
22 },
23 "devDependencies": {
24 "@commitlint/cli": "12.1.4",
25 "@commitlint/config-angular": "12.1.4",
26 "jest": "27.0.6",
27 "ts-jest": "27.0.3",
28 "reflect-metadata": "0.1.13",
29 "@nestjs/core": "8.0.0",
30 "@nestjs/testing": "8.0.0",
31 "@types/jest": "26.0.24",
32 "@typescript-eslint/eslint-plugin": "4.28.2",
33 "@typescript-eslint/parser": "4.28.2",
34 "eslint": "7.30.0",
35 "eslint-config-prettier": "8.3.0",
36 "eslint-plugin-import": "2.23.4",
37 "@nestjs/common": "8.0.0",
38 "@types/node": "14.17.4",
39 "husky": "7.0.1",
40 "lint-staged": "11.0.0",
41 "prettier": "2.3.2",
42 "release-it": "14.10.0",
43 "typescript": "4.3.5"
44 },
45 "dependencies": {
46 "@types/jsonwebtoken": "8.5.4",
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}