UNPKG

ionic-native-http-connection-backend

Version:
124 lines (123 loc) 3.18 kB
{ "name": "ionic-native-http-connection-backend", "version": "11.0.1", "description": "A solution to CORS problem with Ionic and WKWebView", "main": "dist/index.js", "typings": "dist/index.d.ts", "scripts": { "ngcc": "ngcc --properties es2015 browser module main --async false", "build": "npx rimraf aot dist && npm run ngcc && ngc", "commit": "git-cz", "semantic-release": "semantic-release", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/sneas/ionic-native-http-connection-backend.git" }, "keywords": [ "ionic", "ionic3", "wk-web-view", "cors" ], "author": "Dmytro Snisarenko", "license": "MIT", "bugs": { "url": "https://github.com/sneas/ionic-native-http-connection-backend/issues" }, "homepage": "https://github.com/sneas/ionic-native-http-connection-backend#readme", "devDependencies": { "@angular/common": "^12.0.1", "@angular/compiler": "^12.0.1", "@angular/compiler-cli": "^12.0.1", "@angular/core": "^12.0.1", "@angular/forms": "^12.0.1", "@angular/platform-browser": "^12.0.1", "@angular/router": "^12.0.1", "@commitlint/cli": "^12.1.4", "@commitlint/config-conventional": "^12.1.4", "@awesome-cordova-plugins/core": "^6.0.1", "@awesome-cordova-plugins/http": "^6.0.1", "@ionic/angular": "^5.6.7", "@ionic/core": "^5.6.7", "@semantic-release/git": "^10.0.1", "@types/jest": "^26.0.23", "babel-jest": "^26.6.3", "commitizen": "^4.2.4", "core-js": "^3.12.1", "cz-conventional-changelog": "^3.3.0", "husky": "^6.0.0", "jest": "^26.6.3", "jest-config": "^26.6.3", "lint-staged": "^11.0.0", "prettier": "^2.3.0", "rimraf": "^3.0.2", "rxjs": "^7.1.0", "semantic-release": "^19.0.5", "ts-jest": "^26.5.6", "typescript": "~4.2.4", "zone.js": "^0.11.4" }, "peerDependencies": { "@angular/core": ">=12.0.1", "@awesome-cordova-plugins/http": "^6.0.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "jest": { "transform": { "^.+\\.(ts|js|html)$": "ts-jest" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$", "moduleFileExtensions": [ "ts", "js", "html", "json" ], "globals": { "ts-jest": { "tsconfig": "tsconfig.test.json", "diagnostics": true } }, "setupFilesAfterEnv": [ "<rootDir>/jest.init.ts" ], "transformIgnorePatterns": [ "node_modules/(?!@ionic)" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "src/**/*.ts": [ "prettier --write" ] }, "publishConfig": { "tag": "latest" }, "release": { "branches": "master", "prepare": [ "@semantic-release/npm", { "path": "@semantic-release/git", "assets": [ "package.json", "package-lock.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] } }