forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 KB
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
{
"name": "@azure/msal-node",
"version": "1.12.1",
"author": {
"name": "Microsoft",
"email": "nugetaad@microsoft.com",
"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 Node",
"keywords": [
"js",
"ts",
"node",
"AAD",
"msal",
"oauth"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --tsconfig ./tsconfig.build.json",
"build": "tsdx build --tsconfig ./tsconfig.build.json",
"build:modules:watch": "tsdx watch --verbose",
"test": "tsdx test .*.spec.*",
"test:watch": "tsdx test .*.spec.* --watch",
"test:coverage": "tsdx test .*.spec.* --coverage",
"lint": "cd ../../ && npm run lint:node",
"lint:fix": "npm run lint -- -- --fix",
"build:all": "npm run build:common && npm run build",
"build:common": "cd ../msal-common && npm run build",
"link:localDeps": "npx lerna bootstrap --scope @azure/msal-common --scope @azure/msal-node",
"prepack": "npm run build:all"
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
},
"module": "dist/msal-node.esm.js",
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^13.13.4",
"@types/uuid": "^7.0.0",
"husky": "^4.2.3",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typescript": "^3.8.3",
"yargs": "^17.3.1"
},
"dependencies": {
"@azure/msal-common": "^7.3.0",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.0"
},
"engines": {
"node": "10 || 12 || 14 || 16 || 18"
}
}