UNPKG

ng2-http

Version:

Angular2 HttpModule wrapper with decorators and interceptors

110 lines (109 loc) 3.59 kB
{ "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" }