forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.99 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
{
"name": "@azure/msal-node",
"version": "1.0.0-beta.3",
"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"
},
"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",
"build": "tsdx build",
"build:modules:watch": "tsdx watch --verbose",
"doc": "npm run doc:generate && npm run doc:deploy",
"doc:generate": "typedoc --mode modules --excludePrivate --excludeProtected --excludeNotExported --out ./ref ./src/ --gitRevision dev",
"doc:deploy": "gh-pages -d ref -a -e ref/msal-node",
"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",
"prepack": "npm run build:all"
},
"peerDependencies": {},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx",
"node"
],
"testMatch": [
"<rootDir>/test/**/*.spec.ts"
]
},
"module": "dist/msal-node.esm.js",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^13.13.4",
"@types/uuid": "^7.0.0",
"gh-pages": "^3.1.0",
"husky": "^4.2.3",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typedoc": "^0.19.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@azure/msal-common": "^2.1.0",
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.0"
}
}