forked from AzureAD/azure-activedirectory-library-for-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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/azure-activedirectory-library-for-nodejs.git"
},
"version": "0.1.28",
"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": {
"@types/node": "^8.0.47",
"date-utils": "*",
"jws": "3.x.x",
"uuid": "^3.1.0",
"request": ">= 2.52.0",
"underscore": ">= 1.3.1",
"xmldom": ">= 0.1.x",
"xpath.js": "~1.1.0",
"async": ">=0.6.0"
},
"devDependencies": {
"jshint": "*",
"mocha": "*",
"nock": "*",
"sinon": "*",
"typescript": "^2.6.1",
"@types/nock": "^8.2.1",
"@types/mocha": "^2.2.44",
"@types/underscore": "^1.8.4",
"@types/sinon": "^2.3.7"
},
"scripts": {
"test": "npm run tsc && mocha -R spec --ui tdd test",
"cover": "./test/util/cover",
"doc": "jsdoc lib",
"tsc": "tsc -p tsconfig.json"
}
}