forked from yavin5/angular-async-http
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "angular-rest-client",
"version": "2.0.0",
"description": "Angular 5 HTTP client with Typescript Declarative Annotations, Observables, Interceptors and Timeouts.",
"main": "index.js",
"scripts": {
"setup": "yarn --freeze-lockfile",
"test": "node_modules/.bin/gulp test",
"watch": "node_modules/.bin/gulp default",
"prepublish": "node_modules/.bin/gulp prepublish",
"codecov": "./node_modules/.bin/codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steven166/angular-rest-client.git"
},
"keywords": [
"angular5",
"angulario",
"http",
"rest",
"client"
],
"author": "Steven Hermans <s.hermans@maxxton.com>",
"contributors": [
{
"name": "Mayur Patel <mayur-novus>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/steven166/angular-rest-client/issues"
},
"homepage": "https://github.com/steven166/angular-rest-client#readme",
"dependencies": {
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"rxjs": "5.5.0",
"zone.js": "0.8.4"
},
"devDependencies": {
"@angular/compiler": "^5.0.0",
"@types/chai": "^3.4.34",
"@types/jasmine": "^2.5.41",
"@types/node": "^6.0.45",
"async": "^2.1.1",
"chai": "^3.5.0",
"codecov": "^3.0.0",
"codelyzer": "^2.0.1",
"del": "^2.2.2",
"gaze": "^1.1.2",
"gulp": "^3.9.0",
"gulp-html-extend": "^1.1.6",
"gulp-istanbul": "^1.1.2",
"gulp-mocha": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-typescript": "3.1.3",
"gulp-util": "^3.0.7",
"merge2": "^1.0.2",
"ts-node": "^2.0.0",
"tslint": "^4.3.0",
"typescript": "^2.6.2",
"vinyl-paths": "^2.1.0"
}
}