-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "ng-http",
"version": "3.0.1",
"description": "Helper methods for Angular2 HTTP",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "karma test",
"start": "webpack-dev-server --inline",
"prepublish": "rimraf ./lib && ngc -p ./tsconfig-build.json"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mohuk/ng-http.git"
},
"keywords": [
"Angular2",
"HTTP"
],
"author": "Mohammad Umair Khan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohuk/ng-http/issues"
},
"homepage": "https://github.com/mohuk/ng-http#readme",
"devDependencies": {
"@angular/compiler-cli": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@types/core-js": "^0.9.34",
"@types/jasmine": "^2.2.34",
"@types/node": "^6.0.41",
"angular2-template-loader": "^0.5.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"rimraf": "^2.5.4",
"ts-loader": "^0.8.2",
"typescript": "^2.0.10",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"webpack-merge": "^0.14.1"
},
"peerDependencies": {
"@angular/common": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/http": "^2.4.0",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.26",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.9"
}
}