-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "msal-angular",
"version": "1.0.3",
"description": "Angular MSAL wrapper.",
"main": "index.js",
"scripts": {
"build": "gulp clean && gulp compile && gulp copy",
"publish": "npm run build && gulp bump && gulp copy && gulp git-add && gulp git-commit && gulp git-push && gulp publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benbaran/msal-angular.git"
},
"keywords": [
"MSAL",
"Angular"
],
"author": "Ben Baran",
"license": "MIT",
"bugs": {
"url": "https://github.com/benbaran/msal-angular/issues"
},
"homepage": "https://github.com/benbaran/msal-angular#readme",
"dependencies": {
"msal": "^0.1.5"
},
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/router": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"rxjs": "^6.1.0",
"zone.js": "^0.8.26",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.9.0",
"gulp-typescript": "^3.2.4",
"merge2": "^1.2.1",
"typescript": "^2.7.2"
},
"peerDependencies": {
"@angular/common": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/router": "^6.0.0",
"rxjs": "^6.1.0",
"zone.js": "^0.8.26"
}
}