forked from neroniaky/angular-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (73 loc) · 2.14 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "angular2-token",
"version": "0.1.6",
"description": "Angular2 service for token based authentication",
"main": "./angular2-token.js",
"typings": "./angular2-token.d.ts",
"scripts": {
"test": "karma start",
"build": "rm -rf lib && tsc"
},
"keywords": [
"angular2",
"devise token auth",
"token authentication"
],
"peerDependencies": {
"@angular/core": "2.0.0-rc.6",
"@angular/http": "2.0.0-rc.6",
"@angular/common": "2.0.0-rc.6",
"@angular/router": "^3.0.0-rc.2",
"rxjs": "5.0.0-beta.11"
},
"devDependencies": {
"@angular/core": "2.0.0-rc.6",
"@angular/http": "2.0.0-rc.6",
"@angular/common": "2.0.0-rc.6",
"@angular/router": "^3.0.0-rc.2",
"rxjs": "5.0.0-beta.11",
"@angular/compiler": "2.0.0-rc.6",
"@angular/platform-browser": "2.0.0-rc.6",
"@angular/platform-browser-dynamic": "2.0.0-rc.6",
"@angular/platform-server": "2.0.0-rc.6",
"ie-shim": "^0.1.0",
"typescript": "^2.0.0",
"zone.js": "0.6.17",
"@types/core-js": "^0.9.28",
"@types/hammerjs": "^2.0.28",
"@types/jasmine": "^2.2.29",
"@types/node": "^6.0.38",
"@types/source-map": "^0.1.26",
"@types/webpack": "^1.12.29",
"@types/protractor": "^1.5.16",
"awesome-typescript-loader": "^2.2.1",
"source-map-loader": "^0.1.5",
"istanbul-instrumenter-loader": "^0.2.0",
"protractor": "^3.2.2",
"core-js": "^2.4.1",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.8.0",
"remap-istanbul": "^0.6.3",
"ts-helpers": "1.1.1",
"ts-node": "^0.9.1",
"webpack": "^1.13.1"
},
"author": "Jan-Philipp Riethmacher <[email protected]>",
"license": "MIT",
"repository" :
{
"type" : "git",
"url" : "git+https://github.com/neroniaky/angular2-token.git"
},
"bugs": {
"url": "https://github.com/neroniaky/angular2-token/issues"
},
"homepage": "https://github.com/neroniaky/angular2-token#readme"
}