This repository has been archived by the owner on Jan 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
62
63
64
65
66
67
68
69
{
"name": "angular2-adal-ts",
"version": "1.0.1",
"description": "Microsoft Azure Active Directory Client Library for Angular2 applications.",
"main": "./lib/adal.service.ts",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lint": "tslint ./lib/**/*.ts -t verbose",
"test-continously": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"test": "tsc && karma start karma.conf.js --single-run",
"typings": "typings",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SMK1085/ng2-adal.git"
},
"keywords": [
"ts",
"AAD",
"adal",
"oauth",
"angular2"
],
"author": {
"name": "Sven Maschek",
"email": "smaschek85@gmail.com",
"url": "http://wemakeyourit.de"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/SMK1085/ng2-adal/issues"
},
"homepage": "https://github.com/SMK1085/ng2-adal#readme",
"dependencies": {
"@angular/common": "2.1.2",
"@angular/compiler": "2.1.2",
"@angular/core": "2.1.2",
"rxjs": "5.0.0-beta.12",
"adal-angular": "~1.0.12",
"reflect-metadata": "^0.1.8"
},
"devDependencies": {
"codelyzer": "^1.0.0-beta.0",
"tslint": "^3.15.1",
"typings": "^1.4.0",
"typescript": "^2.0.3",
"zone.js": "^0.6.25",
"systemjs": "^0.19.39",
"concurrently": "^2.2.0",
"jasmine-core": "~2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"@angular/forms": "2.1.2",
"@angular/http": "2.1.2",
"@angular/platform-browser": "2.1.2",
"@angular/platform-browser-dynamic": "2.1.2",
"@angular/router": "3.1.2",
"@angular/upgrade": "2.1.2",
"core-js": "2.4.1",
"protractor": "^4.0.9",
"rimraf": "^2.5.4",
"lite-server": "^2.2.2"
}
}