forked from auth0/angular2-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "angular2-jwt",
"version": "0.1.25",
"description": "Helper library for handling JWTs in Angular 2",
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/angular2-jwt.git"
},
"scripts": {
"dev": "tsc --watch",
"test": "karma start",
"prepublish": "tsc"
},
"keywords": [
"angular",
"angular2",
"jwt",
"authentication"
],
"author": "ryanchenkie",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/angular2-jwt/issues"
},
"main": "angular2-jwt.js",
"typings": "./angular2-jwt.d.ts",
"homepage": "https://github.com/auth0/angular2-jwt#readme",
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@types/jasmine": "^2.2.33",
"@types/js-base64": "^2.1.3",
"awesome-typescript-loader": "^2.2.4",
"core-js": "^2.3.0",
"es6-shim": "^0.35.0",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"typescript": "^2.0.2",
"webpack": "^1.13.0",
"zone.js": "~0.6.12"
},
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"rxjs": "5.0.0-beta.12"
}
}