forked from AzureAD/azure-activedirectory-library-for-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "adal-node",
"author": {
"name": "Microsoft Open Technologies Inc",
"email": "[email protected]",
"url": "http://msopentech.com/"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/MSOpenTech/aal/raw/master/License.txt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MSOpenTech/azure-activedirectory-library-for-nodejs.git"
},
"version": "0.1.10",
"description": "Windows Azure Active Directory Client Library for node",
"keywords": [ "node", "azure", "AAD", "adal", "adfs", "oauth" ],
"main": "./lib/adal.js",
"engines": { "node": ">= 0.6.15" },
"licenses": [ { "type": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ],
"dependencies": {
"date-utils": "*",
"jws": "1.x.x",
"node-uuid": "1.4.1",
"request": ">= 2.9.203",
"underscore": ">= 1.3.1",
"xmldom": ">= 0.1.x",
"xpath.js": "~1.0.5"
},
"devDependencies": {
"async": "*",
"jshint": "*",
"mocha": "*",
"nock": "*",
"sinon": "*"
},
"scripts": {
"test": "mocha -R spec --ui tdd test",
"cover" : "./test/util/cover",
"doc" : "jsdoc lib"
}
}