-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@southlane/cognito-jwt-verifier",
"version": "0.1.8",
"description": "Decode and verify JWT tokens issued by AWS Cognito.",
"keywords": [
"aws",
"amazon",
"cognito",
"jwt",
"jwks",
"access_token",
"access token",
"id_token",
"id token",
"decode",
"verify",
"validate"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --config tests/.mocharc.yml",
"test-coverage": "nyc --reporter=html mocha --config tests/.mocharc.yml",
"format": "prettier --write '**/*.{js,css,json,md}'",
"lint:js": "eslint \"**/*.{js,jsx,}\"",
"lint:markdown": "markdownlint *.md",
"lint:spellcheck": "cspell --config=.cspell.json **/*.md",
"lint": "run-p lint:*",
"audit-security": "audit-ci --config ./audit-ci.json",
"check-language": "write-good *.md --no-passive",
"publish-package": "git push --tags && npm publish --access public"
},
"files": [
"src/**/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/maximivanov/cognito-jwt-verifier"
},
"author": "Max Ivanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximivanov/cognito-jwt-verifier/issues"
},
"homepage": "https://github.com/maximivanov/cognito-jwt-verifier#readme",
"dependencies": {
"jose": "^1.28.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"audit-ci": "^3.1.1",
"chai": "^4.2.0",
"cspell": "^4.1.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"markdownlint-cli": "^0.24.0",
"mocha": "^8.2.0",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"sinon": "^9.2.1",
"write-good": "^1.0.3"
}
}