UNPKG

806 BJSONView Raw
1{
2 "name": "@nestjs/jwt",
3 "version": "0.1.3",
4 "description": "Nest - modern, fast, powerful node.js web framework (@jwt)",
5 "author": "Kamil Mysliwiec",
6 "license": "MIT",
7 "scripts": {
8 "build": "rm -rf dist && tsc -p tsconfig.json",
9 "precommit": "lint-staged",
10 "prepublish:npm": "npm run build",
11 "publish:npm": "npm publish --access public"
12 },
13 "peerDependencies": {
14 "@nestjs/common": "^5.0.0"
15 },
16 "devDependencies": {
17 "@nestjs/common": "^5.0.1",
18 "@types/node": "^7.0.41",
19 "husky": "^0.14.3",
20 "lint-staged": "^7.0.0",
21 "prettier": "^1.11.1",
22 "typescript": "^2.4.2"
23 },
24 "lint-staged": {
25 "*.ts": [
26 "prettier --write",
27 "git add"
28 ]
29 },
30 "dependencies": {
31 "@types/jsonwebtoken": "^7.2.7",
32 "jsonwebtoken": "^8.3.0"
33 }
34}