-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
package.json
87 lines (87 loc) · 2.33 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
{
"name": "@azure/msal-node-extensions",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"license": "MIT",
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"main": "lib/msal-node-extensions.cjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./lib/types/index.d.ts",
"default": "./lib/msal-node-extensions.cjs"
}
},
"./package.json": "./package.json"
},
"keywords": [
"js",
"ts",
"node",
"AAD",
"msal",
"extensions"
],
"files": [
"dist",
"bin",
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"compile": "node-gyp rebuild",
"install": "exit 0",
"clean": "shx rm -rf dist bin lib",
"build": "npm run clean && rollup -c --strictDeprecations --bundleConfigAsCjs && node ./scripts/buildBinaries.cjs",
"build:all": "cd ../.. && npm run build --workspace=@azure/msal-common --workspace=@azure/msal-node-extensions",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"format:check": "prettier --ignore-path .gitignore --check src test",
"format:fix": "prettier --ignore-path .gitignore --write src test",
"prepack": "npm run build:all && node ./scripts/checkBinaries.cjs"
},
"author": {
"name": "Microsoft",
"email": "[email protected]",
"url": "https://www.microsoft.com"
},
"beachball": {
"disallowedChangeTypes": [
"major"
]
},
"dependencies": {
"@azure/msal-common": "14.16.0",
"@azure/msal-node-runtime": "^0.17.1",
"keytar": "^7.8.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.3.1",
"eslint-config-msal": "file:../../shared-configs/eslint-config-msal",
"jest": "^29.5.0",
"node-addon-api": "^6.1.0",
"rollup": "^4.22.4",
"rollup-msal": "file:../../shared-configs/rollup-msal",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-jest-mock-import-meta": "^1.1.0",
"tslib": "^2.0.0",
"typescript": "^4.9.5"
}
}