forked from Paldom/angular2-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "angular2-rest",
"version": "0.1.0",
"description": "Angular2 HTTP client to consume RESTful services.",
"typings": "./angular2-rest.d.ts",
"main": "angular2-rest.js",
"scripts": {
"test": "node_modules/.bin/gulp test",
"gulp": "node_modules/.bin/gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Paldom/angular2-rest.git"
},
"keywords": [
"angular2",
"angulario",
"http",
"rest",
"client"
],
"author": "Domonkos Pal <Paldom>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Paldom/angular2-rest/issues"
},
"homepage": "https://github.com/Paldom/angular2-rest#readme",
"dependencies": {
"@angular/core": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/common": "2.0.0",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.23"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-jasmine": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-tsc": "^1.1.4",
"gulp-typedoc": "^1.2.1",
"gulp-typescript": "^2.10.0",
"gulp-uglify": "^1.5.1",
"object-merge": "^2.5.1"
}
}