-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
package.json
63 lines (63 loc) · 2.49 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
{
"name": "microsoft-authentication-libraries-for-js",
"private": true,
"devDependencies": {
"@angular/compiler": "^15.2.4",
"@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",
"@babel/register": "^7.13.16",
"@microsoft/api-extractor": "^7.43.4",
"@octokit/graphql": "^4.6.0",
"@octokit/rest": "^18.2.1",
"beachball": "^2.22.4",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"gh-pages": "^5.0.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.7",
"rimraf": "^3.0.0",
"semver": "^7.3.4",
"ts-node": "^8.10.2",
"typedoc": "^0.24.0",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"scripts": {
"audit": "npm audit --workspace=lib/** --workspace=extensions/** --include-workspace-root",
"clean:nodeModules": "npx npkill -y",
"doc": "npm run doc:generate && npm run doc:deploy",
"doc:generate": "rimraf ./ref/* && typedoc",
"doc:deploy": "gh-pages -d ref -a -e ref",
"beachball:check": "beachball check --branch origin/dev",
"beachball:change": "beachball change --branch origin/dev",
"beachball:bump": "beachball bump --branch origin/dev --bumpDeps false && node release-scripts/updateVersion.js",
"beachball:bump:alpha": "beachball bump --branch origin/dev --bumpDeps false --prerelease-prefix alpha",
"beachball:bump:beta": "beachball bump --branch origin/dev --bumpDeps false --prerelease-prefix beta",
"beachball:bump:official": "beachball bump --branch origin/dev",
"beachball:release": "node ./.github/create-releases.js"
},
"workspaces": [
"shared-configs/eslint-config-msal",
"shared-configs/rollup-msal",
"lib/msal-common",
"lib/msal-browser",
"lib/msal-node",
"lib/msal-angular",
"lib/msal-react",
"extensions/msal-node-extensions",
"extensions/samples/*",
"shared-test-utils",
"samples/e2eTestUtils",
"samples/msal-browser-samples/*",
"samples/msal-angular-v3-samples/*",
"samples/msal-react-samples/*",
"samples/msal-node-samples/*"
]
}