forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.37 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
{
"name": "@azure/msal-react",
"version": "2.2.0",
"author": {
"name": "Microsoft",
"url": "https://www.microsoft.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"description": "Microsoft Authentication Library for React",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"main": "lib/msal-react.cjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./lib/types/index.d.ts",
"default": "./lib/msal-react.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"lib",
"src"
],
"engines": {
"node": ">=10"
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
},
"scripts": {
"build": "rollup -c --strictDeprecations --bundleConfigAsCjs",
"build:modules:watch": "rollup -cw --bundleConfigAsCjs",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts --ext .tsx",
"lint:fix": "npm run lint -- --fix",
"build:all": "cd ../.. && npm run build --workspace=@azure/msal-common --workspace=@azure/msal-browser --workspace=@azure/msal-react",
"prepack": "npm run build:all",
"format:check": "prettier --ignore-path .gitignore --check src test",
"format:fix": "prettier --ignore-path .gitignore --write src test",
"apiExtractor": "api-extractor run"
},
"peerDependencies": {
"@azure/msal-browser": "^3.27.0",
"react": "^16.8.0 || ^17 || ^18"
},
"devDependencies": {
"@azure/msal-browser": "^3.27.0",
"@microsoft/api-extractor": "^7.43.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.5.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"eslint-config-msal": "file:../../shared-configs/eslint-config-msal",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.22.4",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"tslib": "^2.0.0",
"typescript": "^4.9.5"
}
}