-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@practera/jwt-parser",
"version": "1.0.8",
"description": "Verifies using public keys and parses a JWT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/intersective/jwt-parser.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"practera",
"intersective",
"jwt"
],
"files": [
"lib/**/*"
],
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint-fix": "tslint --fix -p tsconfig.json -c tslint.json",
"test": "npm run build && npx jest --coverage",
"test-update": "npm run build && npx jest --updateSnapshot",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"dependencies": {
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"precommit.silent": true,
"pre-commit": [
"test"
]
}