-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "@mfbtech/msal-node-utils",
"version": "1.0.0",
"description": "Utilities to assist with MSAL authentication",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf ./lib && tsc --project tsconfig.prod.json",
"lint": "eslint ./src/",
"test": "jest --watch",
"fix-formatting": "prettier --write --config prettier.config.cjs ./src/",
"check-formatting": "prettier --check --config prettier.config.cjs ./src/"
},
"author": "MFB Technologies, Inc.",
"license": "MIT",
"devDependencies": {
"@rushstack/eslint-config": "~3.3.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"@typescript-eslint/parser": "~6.4.1",
"eslint": "8.48.0",
"jest": "^29.7.0",
"prettier": "~3.5.3",
"rimraf": "~6.0.1",
"ts-jest": "^29.2.6",
"typescript": "~5.8.2"
},
"dependencies": {
"@azure/msal-node": "^3.3.0",
"@azure/msal-node-extensions": "^1.5.7",
"open": "^10.1.0"
}
}