-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
109 lines (109 loc) · 3.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"author": "Hugh Boylan",
"name": "ng2-http",
"version": "1.0.2",
"description": "Angular2 HttpModule wrapper with decorators and interceptors",
"main": "./dist/umd/ng2-http.js",
"module": "./dist/esm/src/index.js",
"typings": "./dist/esm/src/index.d.ts",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.js",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "rm -rf dist",
"test": "karma start",
"test:watch": "karma start --watch",
"commit": "git add -A && git-cz",
"push": "npm run commit && git push origin master",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"typedoc": "typedoc --options typedoc.json --exclude src/util.ts src/*.ts",
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc",
"gh-pages-push": "git add . && git commit -m 'chore(docs): build demo and docs' && git push && git checkout master",
"prerelease": "npm test",
"release": "standard-version && npm run build:dist && npm run commit && git push --follow-tags origin master && npm publish",
"postrelease": "npm run build:clean && npm run gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hboylan/ng2-http.git"
},
"keywords": [
"angular2",
"rest",
"client",
"ng2",
"ngmodule",
"http"
],
"bugs": {
"url": "https://github.com/hboylan/ng2-http/issues"
},
"homepage": "https://github.com/hboylan/ng2-http#readme",
"devDependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@types/chai": "^4.0.4",
"@types/core-js": "^0.9.43",
"@types/jasmine": "^2.5.53",
"@types/sinon": "^2.3.2",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.1.0",
"commitizen": "^2.9.6",
"concurrently": "^3.5.0",
"conventional-changelog": "^1.1.3",
"conventional-changelog-cli": "^1.3.1",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^2.0.0",
"ghooks": "^2.0.0",
"imports-loader": "^0.7.1",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-remap-istanbul": "^0.6.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"phantomjs-prebuilt": "^2.1.14",
"rxjs": "^5.4.2",
"sinon": "^4.1.2",
"sinon-chai": "^2.11.0",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"standard-version": "^4.2.0",
"ts-loader": "^3.1.1",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.9.0",
"typescript": "^2.4.2",
"validate-commit-msg": "^2.12.2",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"zone.js": "^0.8.13"
},
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/http": "^5.0.0"
},
"files": [
"dist"
],
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"license": "MIT"
}