forked from neroniaky/angular-token
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
79 lines (73 loc) · 2.13 KB
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
{
"name": "angular2-token",
"version": "0.2.0-beta.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 -p src",
"prepublish": "npm run build"
},
"keywords": [
"angular2",
"devise token auth",
"token authentication"
],
"peerDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0",
"@angular/http": "^2.0.0",
"@angular/router": "^3.0.0"
},
"devDependencies": {
"@angular/common": "2.4.2",
"@angular/compiler": "2.4.2",
"@angular/core": "2.4.2",
"@angular/forms": "2.4.2",
"@angular/http": "2.4.2",
"@angular/platform-browser": "2.4.2",
"@angular/platform-browser-dynamic": "2.4.2",
"@angular/platform-server": "2.4.2",
"@angular/router": "3.4.2",
"@types/hammerjs": "2.0.34",
"@types/jasmine": "2.5.40",
"@types/node": "6.0.59",
"@types/selenium-webdriver": "2.53.39",
"@types/source-map": "0.5.0",
"@types/webpack": "2.1.0",
"awesome-typescript-loader": "3.0.0-beta.18",
"core-js": "2.4.1",
"http-server": "0.9.0",
"ie-shim": "0.1.0",
"istanbul-instrumenter-loader": "1.2.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-remap-coverage": "0.1.4",
"karma-mocha-reporter": "2.2.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.1",
"remap-istanbul": "0.8.4",
"rxjs": "5.0.3",
"source-map-loader": "0.1.6",
"ts-helpers": "1.1.2",
"ts-node": "2.0.0",
"typescript": "2.1.5",
"webpack": "2.1.0-beta.27",
"zone.js": "0.7.5"
},
"author": "Jan-Philipp Riethmacher <neroniaky@gmail.com>",
"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"
}