This repository was archived by the owner on May 7, 2021. It is now read-only.
forked from Paldom/angular2-rest
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "@maxxton/angular-rest",
"version": "1.0.0",
"description": "Angular2 HTTP client to consume RESTful services.",
"typings": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/gulp test",
"watch": "node_modules/.bin/gulp default",
"prepublish": "node_modules/.bin/gulp prepublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxxtonGroup/angular2-rest.git"
},
"keywords": [
"angular2",
"angulario",
"http",
"rest",
"client"
],
"author": "Steven Hermans <s.hermans@maxxton.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxxtonGroup/angular2-rest/issues"
},
"homepage": "https://github.com/MaxxtonGroup/angular2-rest#readme",
"dependencies": {
"@angular/core": "2.3.1",
"@angular/http": "2.3.1",
"reflect-metadata": "^0.1.8",
"rxjs": "5.0.0-rc.4",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/jasmine": "^2.5.40",
"@types/node": "^7.0.0",
"async": "^2.0.1",
"chai": "^3.5.0",
"del": "^2.2.2",
"gaze": "^1.1.2",
"gulp": "^3.9.0",
"gulp-html-extend": "^1.1.6",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-typescript": "3.1.3",
"gulp-util": "^3.0.7",
"merge2": "^1.0.2",
"typings": "^2.0.0",
"vinyl-paths": "^2.1.0"
}
}