-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 3.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "validate-azure-ad-token",
"version": "2.2.0",
"description": "Function to validate access token received from azure active directory. Useful when you're using a msal library to authenticate users on the frontend and you wanna verify Microsoft tokens in the API.",
"license": "MIT",
"author": "Paweł Wojtasiński <[email protected]>",
"repository": "[email protected]:playerony/validate-azure-ad-token.git",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "npx rimraf dist && npx rimraf tsconfig.tsbuildinfo && tsc",
"build:docs": "bash ./scripts/build-docs.sh",
"check:all": "concurrently \"yarn lint\" \"yarn typecheck\" \"yarn format:check\" \"yarn build\"",
"commitlint": "commitlint -- --from=main",
"dev": "yarn build --watch --preserveWatchOutput",
"docs:api-documenter": "yarn api-documenter markdown -i temp -o docs",
"docs:api-extractor": "yarn api-extractor run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"gcb": "bash ./scripts/git-create-branch.sh",
"gcdwp": "bash ./scripts/git-checkout-develop-with-pull.sh",
"gpc": "bash ./scripts/git-push-changes.sh",
"grlc": "bash ./scripts/git-reset-local-changes.sh",
"lint": "eslint \"**/*\"",
"lint:fix": "yarn lint -- --fix",
"open:coverage": "open ./coverage/lcov-report/index.html",
"prepare": "husky install",
"prettier": "prettier \"**/*.+(js|ts|json)\"",
"reinstall-node-modules": "bash ./scripts/reinstall-node-modules.sh",
"rlb": "bash ./scripts/remove-local-branches.sh",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"dependencies": {
"axios": "^1.6.2",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@microsoft/api-documenter": "^7.21.6",
"@microsoft/api-extractor": "^7.34.4",
"@types/jsonwebtoken": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^7.6.0",
"eslint": "8.36.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-folders": "^1.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"prettier-package-json": "^2.8.0",
"rimraf": "^4.4.1",
"typescript": "^4.9.5"
},
"keywords": [
"Paweł",
"Wojtasiński",
"axios",
"azure",
"azure-ad-jwt",
"azure-functions",
"graph-api",
"jsonwebtoken",
"microsoft",
"msal",
"msal-browser",
"msal-library",
"msal-react",
"playerony",
"token",
"validation"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]",
"volta": {
"node": "18.15.0"
}
}