forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "adal-angular",
"author": {
"name": "Microsoft",
"email": "[email protected]",
"url": "https://www.microsoft.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AzureAD/microsoft-authentication-library-for-js.git"
},
"version": "1.0.18",
"description": "Windows Azure Active Directory Client Library for js",
"keywords": [
"implicit",
"js",
"AAD",
"adal",
"oauth"
],
"main": "./lib/adal.js",
"engines": {
"node": ">=0.8.0"
},
"dependencies": {},
"devDependencies": {
"@azure/storage-blob": "^12.5.0",
"atob": "~1.1.2",
"bower": "^1.3.3",
"dotenv": "^9.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "^0.3.0",
"grunt-contrib-connect": "^0.7.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.2.0",
"grunt-jasmine-node": "~0.2.1",
"grunt-jsdoc": "~0.5.7",
"grunt-karma": "^0.9.x",
"jasmine-node": "~1.14.5",
"jshint": "*",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-jasmine": "^0.1.5"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "jasmine-node tests/unit/spec",
"doc": "grunt jsdoc",
"build": "grunt uglify",
"prepack": "npm run build",
"cdn": "npm run build && npm run cdn:upload",
"cdn:upload": "node ./cdn-upload.js"
}
}