forked from neroniaky/angular-token
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.29 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
{
"name": "angular2-token",
"version": "0.2.0",
"description": "Angular service for token based authentication",
"main": "./angular2-token.js",
"typings": "./angular2-token.d.ts",
"scripts": {
"test": "karma start",
"build": "rimraf dist && ng-packagr -p ng-package.json"
},
"keywords": [
"angular",
"devise token auth",
"token authentication"
],
"peerDependencies": {
"@angular/common": "^5.0.0 || ^6.0.0",
"@angular/core": "^5.0.0 || ^6.0.0",
"@angular/http": "^5.0.0 || ^6.0.0",
"@angular/router": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@angular/cli": "6.0.8",
"@angular/animations": "6.0.5",
"@angular/common": "6.0.5",
"@angular/compiler": "6.0.5",
"@angular/compiler-cli": "6.0.5",
"@angular/core": "6.0.5",
"@angular/forms": "6.0.5",
"@angular/http": "6.0.5",
"@angular/platform-browser": "6.0.5",
"@angular/platform-browser-dynamic": "6.0.5",
"@angular/platform-server": "6.0.5",
"@angular/router": "6.0.5",
"@types/hammerjs": "2.0.35",
"@types/jasmine": "2.8.8",
"@types/node": "10.3.3",
"@types/selenium-webdriver": "3.0.10",
"@types/webpack": "4.4.0",
"@types/tapable": "1.0.2",
"awesome-typescript-loader": "5.0.0",
"core-js": "2.5.7",
"http-server": "0.11.1",
"ie-shim": "0.1.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.1.0",
"karma": "2.0.3",
"karma-chrome-launcher": "2.2.0",
"karma-coverage": "1.1.2",
"karma-jasmine": "1.1.2",
"karma-mocha-reporter": "2.2.5",
"karma-remap-coverage": "0.1.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "3.0.0",
"remap-istanbul": "0.11.1",
"rimraf": "2.6.2",
"rxjs": "6.2.1",
"rxjs-compat": "6.2.1",
"source-map-loader": "0.2.3",
"ts-helpers": "1.1.2",
"ts-node": "6.1.1",
"tslint": "5.10.0",
"ng-packagr": "3.0.2",
"typescript": "2.7.2",
"webpack": "4.12.0",
"zone.js": "0.8.26"
},
"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"
}