forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 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
{
"name": "@azure/msal-browser",
"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"
},
"version": "2.32.0",
"description": "Microsoft Authentication Library for js",
"keywords": [
"implicit",
"authorization code",
"PKCE",
"js",
"AAD",
"msal",
"oauth"
],
"sideEffects": false,
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=0.8.0"
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
},
"directories": {
"test": "test"
},
"files": [
"dist",
"lib/msal-browser.js",
"lib/msal-browser.js.map",
"lib/msal-browser.min.js"
],
"scripts": {
"cdn": "npm run build:all && npm run cdn:upload && npm run cdn:sri",
"cdn:upload": "node ./cdn-upload.js",
"cdn:sri": "node ./cdn-sri.js",
"clean": "shx rm -rf dist lib",
"clean:coverage": "rimraf ../../.nyc_output/*",
"lint": "cd ../../ && npm run lint:browser",
"lint:fix": "npm run lint -- -- --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:only": "npm run clean:coverage && npm run test:coverage",
"build:all": "npm run build:common && npm run build",
"build:common": "cd ../msal-common && npm run build",
"build:modules": "rollup -c",
"build:modules:watch": "rollup -cw",
"build": "npm run clean && npm run build:modules",
"link:localDeps": "npx lerna bootstrap --scope @azure/msal-common --scope @azure/msal-browser",
"prepack": "npm run build:all"
},
"devDependencies": {
"@azure/storage-blob": "^12.2.1",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/jest": "^26.0.23",
"@types/sinon": "^7.5.0",
"dotenv": "^8.2.0",
"fake-indexeddb": "^3.1.3",
"husky": "^3.0.9",
"jest": "^27.0.4",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"rimraf": "^3.0.0",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"shx": "^0.3.2",
"sinon": "^7.5.0",
"ssri": "^8.0.1",
"ts-jest": "^27.0.2",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@azure/msal-common": "^9.0.0"
}
}