forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.96 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
{
"name": "microsoft-authentication-libraries-for-js",
"private": true,
"devDependencies": {
"@angular-eslint/eslint-plugin": "^2.0.2",
"@angular/compiler": "^11.2.8",
"@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",
"@octokit/graphql": "^4.6.0",
"@octokit/rest": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"beachball": "^2.16.0",
"dotenv": "^8.2.0",
"eslint": "^7.8.1",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-security": "^1.4.0",
"gh-pages": "^3.1.0",
"lerna": "^3.22.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"semver": "^7.3.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typedoc": "^0.20.32",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"scripts": {
"audit": "npm audit --production && lerna exec \"npm audit --production\"",
"audit:prod": "npm audit && lerna exec \"npm audit --production\"",
"postinstall": "node build/postinstall.js",
"build": "lerna run build",
"build:extensions": "cd extensions/msal-node-extensions/ && npm ci && npm run build",
"test": "lerna run test",
"test:coverage": "npm run clean:coverage && lerna run test:coverage",
"test:e2e": "lerna run --concurrency 1 test:e2e",
"doc": "npm run doc:generate && npm run doc:deploy",
"doc:generate": "rimraf ./ref/* && typedoc",
"doc:deploy": "gh-pages -d ref -a -e ref",
"lint": "run-s lint:*",
"lint:angular": "eslint lib/msal-angular/src --ext .ts",
"lint:browser": "eslint lib/msal-browser/src --ext .ts",
"lint:common": "eslint lib/msal-common/src --ext .ts",
"lint:core": "eslint lib/msal-core/src --ext .ts",
"lint:node": "eslint lib/msal-node/src --ext .ts",
"lint:node:extensions": "eslint extensions/msal-node-extensions/src --ext .ts",
"lint:node:token": "eslint lib/node-token-validation/src --ext .ts",
"lint:react": "eslint lib/msal-react/src --ext .ts --ext .tsx",
"clean": "lerna run clean --no-private && lerna clean",
"clean:coverage": "rimraf ./.nyc_output/*",
"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:bumpDeps": "beachball bump",
"beachball:publish": "beachball publish -n $NODE_AUTH_TOKEN",
"beachball:release": "node ./.github/create-releases.js"
},
"dependencies": {}
}