forked from Hacklone/angular2-cool-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "angular2-cool-http",
"version": "2.0.0",
"description": "Cool features over angular2 Http Client.",
"main": "index.js",
"jsnext:main": "esm/index.js",
"typings": "index.d.ts",
"peerDependencies": {
"rxjs": "^5.2.0",
"@angular/core": "2.4.8",
"@angular/http": "2.4.8"
},
"devDependencies": {
"@angular/compiler": "2.4.8",
"@angular/compiler-cli": "2.4.8",
"@angular/platform-server": "2.4.8",
"typescript": "2.2.1"
},
"scripts": {
"clean": "rm -rf ./dist",
"compile": "./node_modules/.bin/ngc",
"copy-files": "cp ./README.md ./dist/README.md && cp ./package.json ./dist/package.json",
"build": "npm run clean && npm run compile && npm run copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hacklone/angular2-cool-http.git"
},
"keywords": [
"angular2",
"http",
"httpclient",
"interceptor",
"global",
"headers",
"interceptors",
"cool",
"cool-http",
"cookie",
"custom",
"header"
],
"author": "Hacklone <toakak@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Hacklone/angular2-cool-http/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/Hacklone/angular2-cool-http/issues"
},
"homepage": "https://github.com/Hacklone/angular2-cool-http#readme"
}