forked from voliva/angular2-interceptors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 831 Bytes
/
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
{
"name": "ng2-interceptors",
"version": "1.2.0",
"description": "Angular2 interceptor service implementation",
"keywords": [
"Angular 2",
"Interceptor"
],
"author": {
"name": "Víctor Oliva",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/voliva/angular2-interceptors"
},
"main": "index.js",
"license": "ISC",
"scripts": {
"build": "rimraf lib && tsc -p src"
},
"peerDependencies": {
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"rxjs": "5.0.0-beta.12"
},
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/http": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"rxjs": "^5.0.0-beta.12",
"typescript": "^2.0.3",
"zone.js": "^0.6.21"
}
}