forked from neroniaky/angular-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "angular2-token",
"version": "0.2.0-beta.12",
"description": "Angular2 service for token based authentication",
"main": "./angular2-token.js",
"typings": "./angular2-token.d.ts",
"scripts": {
"test": "karma start",
"build": "rimraf lib && ngc -p src",
"prepublish": "npm run build"
},
"keywords": [
"angular2",
"devise token auth",
"token authentication"
],
"peerDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/router": "^4.0.0"
},
"devDependencies": {
"@angular/common": "4.2.3",
"@angular/compiler": "4.2.3",
"@angular/compiler-cli": "4.2.3",
"@angular/core": "4.2.3",
"@angular/forms": "4.2.3",
"@angular/http": "4.2.3",
"@angular/platform-browser": "4.2.3",
"@angular/platform-browser-dynamic": "4.2.3",
"@angular/platform-server": "4.2.3",
"@angular/router": "4.2.3",
"@angular/animations": "4.2.3",
"@types/hammerjs": "2.0.34",
"@types/jasmine": "2.5.52",
"@types/node": "7.0.32",
"@types/selenium-webdriver": "3.0.4",
"@types/source-map": "0.5.0",
"@types/webpack": "3.0.0",
"awesome-typescript-loader": "3.1.3",
"core-js": "2.4.1",
"http-server": "0.10.0",
"ie-shim": "0.1.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.4",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-remap-coverage": "0.1.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.4",
"remap-istanbul": "0.9.5",
"rimraf": "2.6.1",
"rxjs": "5.4.2",
"source-map-loader": "0.2.1",
"ts-helpers": "1.1.2",
"ts-node": "3.2.0",
"typescript": "2.3.4",
"webpack": "2.6.1",
"zone.js": "0.8.12"
},
"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"
}