forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.76 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
{
"name": "@azure/msal-react",
"version": "1.0.0",
"author": {
"name": "Microsoft",
"email": "[email protected]",
"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",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"build:modules:watch": "tsdx watch --verbose --tsconfig ./tsconfig.build.json",
"test": "tsdx test .*.spec.*",
"test:watch": "tsdx test .*.spec.* --watch",
"test:coverage": "tsdx test .*.spec.* --coverage",
"lint": "cd ../../ && npm run lint:react",
"lint:fix": "npm run lint -- -- --fix",
"build:all": "npm run build:common && npm run build:browser && npm run build",
"build:browser": "cd ../msal-browser && npm run build",
"build:common": "cd ../msal-common && npm run build",
"prepack": "npm run build:all"
},
"peerDependencies": {
"@azure/msal-browser": "^2.14.2",
"react": "^16.13.0 || ^17"
},
"module": "dist/msal-react.esm.js",
"devDependencies": {
"@azure/msal-browser": "^2.14.2",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"jest": "^26.6.1",
"jest-environment-jsdom-fifteen": "^1.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.4.3",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}