forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "adal-node",
"author": {
"name": "Microsoft Open Technologies Inc",
"email": "[email protected]",
"url": "http://msopentech.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"version": "0.2.3",
"description": "Windows Azure Active Directory Client Library for node",
"keywords": [
"node",
"azure",
"AAD",
"adal",
"adfs",
"oauth"
],
"main": "./lib/adal.js",
"types": "./lib/adal.d.ts",
"engines": {
"node": ">= 0.6.15"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3",
"async": "^2.6.3",
"axios": "^0.21.1",
"date-utils": "*",
"jws": "3.x.x",
"underscore": ">= 1.3.1",
"uuid": "^3.1.0",
"xpath.js": "~1.1.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/nock": "^8.2.1",
"@types/node": "^14.17.10",
"@types/sinon": "^2.3.7",
"@types/underscore": "^1.8.4",
"jshint": "^2.10.2",
"mocha": "*",
"nock": "^10.0.6",
"sinon": "^7.3.2",
"typescript": "^3.9.10"
},
"scripts": {
"test": "npm run tsc && mocha -R spec --ui tdd test",
"cover": "./test/util/cover",
"doc": "jsdoc lib",
"tsc": "tsc -p tsconfig.json"
}
}