{"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"dist-tags":{"latest":"2.2.0","alpha":"1.1.0-alpha.2","beta":"1.2.0-beta.1"},"author":{"name":"Hausenn @HausennTechnologies"},"description":"Write version number and build number for Android and iOS on ionic/capacitor projects","readme":"<h1 align=\"center\" style=\"border-bottom: none;\">capacitor-set-version</h1>\n<h3 align=\"center\">Write version number and build number for Android and iOS on ionic/capacitor projects</h3>\n<br />\n<div align=\"center\" style=\"margin-bottom: 3em\">\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Version\" src=\"https://img.shields.io/npm/v/capacitor-set-version.svg\">\n  </a>\n  <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml\">\n    <img alt=\"Release\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml/badge.svg?branch=master\">\n  </a>\n    <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/test.yml\">\n    <img alt=\"Test\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/test.yml/badge.svg?branch=master\">\n  </a>\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Downloads per week\" src=\"https://img.shields.io/npm/dw/capacitor-set-version.svg\">\n  </a>\n    <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/blob/master/package.json\">\n    <img alt=\"License\" src=\"https://img.shields.io/npm/l/capacitor-set-version.svg\">\n  </a>\n</div>\n\n<p align=\"center\">\nBuild With\n<br />\n<a href=\"https://oclif.io\">\n    <img alt=\"oclif\" src=\"https://img.shields.io/badge/cli-oclif-brightgreen.svg\">\n  </a>\n  <a href=\"https://github.com/semantic-release/semantic-release\">\n    <img alt=\"semantic release\" src=\"https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\">\n  </a>\n</p>\n\n# Installation\n\nUse with npx without install:\n\n```bash\n  npx capacitor-set-version [DIR] -v <value> -b <value> [--json]\n```\n\ninstall as a development dependency:\n\n```bash\n  npm i -D capacitor-set-version\n```\n\nor install globally:\n\n```bash\n  npm i -g capacitor-set-version\n```\n\n# How it works\n\nCalling `capacitor-set-version` will set your Android and iOS app versions and build number to the values passed as flags.\n\nFor Android, build number means the `versionCode` option and in iOS it will be `CFBundleVersion`.\n\n## Options\n\nFlags bellow are used to change the default behavior.\n\n```bash\nUSAGE\n  $ capacitor-set-version [DIR] -v <value> -b <value> [--json]\n\nARGUMENTS\n  DIR  Capacitor project root directory\n\nOPTIONS\n  -b, --build=10       App build number (Integer)\n  -v, --version=x.x.x  App version\n  --json               Print errors and result as JSON\n  -h, --help           Show help\n```\n\n## Setting version for iOS or Android only\n\nIf you need to update the version in only one platform, you can use the commands \"set:ios\" or \"set:android\", accordingly.\n\n```bash\n# Set android version only\ncapacitor-set-version set:android -v 1.1.1 -b 100 ./my-app\n\n# Set ios version only\ncapacitor-set-version set:ios -v 1.1.1 -b 100 ./my-app\n```\n\n# Usage\n\n## Examples\n\n```bash\n# Set version to 1.2.3 and build number to 10 on current folder.\ncapacitor-set-version -v 1.2.3 -b 10\n\n# Set version of project on folder ./my-app\ncapacitor-set-version -v 1.2.3 -b 10 ./my-app\n\n# Set android only version and build number\ncapacitor-set-version set:android -v 1.2.3-rc1 -b 1546 ./my-app\n\n# Set iOS version only\ncapacitor-set-version set:ios -v 1.2.3 -b 10 ./my-app\n\n```\n\n# Migrating from version 1.x.x\n\nA lot of changes were made from version 1.x.x, with some features being removed. Bellow is a list of all braking changes:\n\n- Removed reading the version from package.json;\n- Removed auto-increment for version and build numbers;\n- Flags -v and -b are now mandatory;\n- Replaced flags for ios and android with commands \"set:ios\" and \"set:android\".\n\nIf you need any of these features back, open up an issue relating your use case.\n\n<br>\n\n<p align=\"center\">\n  <a style=\"color: #7c7c7c; font-size: small; margin-top: 2em\" href=\"https://www.hausenn.com.br\">\n  Hausenn Technologies\n  </a>\n</p>\n","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"license":"MIT","versions":{"1.0.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.0.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"posttest":"eslint . --ext .ts --config .eslintrc","prepack":"rm -rf lib && tsc -b && oclif-dev readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif-dev readme && git add README.md","prepare":"husky install"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","tslib":"^1.14.1"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^5.2.7","@types/node":"^10.17.56","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","nyc":"^14.1.1","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^8.10.2","typescript":"^3.9.9"},"gitHead":"caf76be95f50b2c3e555aae16a532f08eb5d2412","_id":"capacitor-set-version@1.0.0","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-O6PowfkBfcV3SevhVl0gcCwG0fWj7iSi+iccRaLduwz9oLXf27V4lOnsD/VuRF4Ru2Vqp8YzFGIZpDkNbqPFCQ==","shasum":"38397b544d55e000a24e03613f689ba6a4683f47","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.0.0.tgz","fileCount":7,"unpackedSize":5383,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgb2vZCRA9TVsSAnZWagAANfcQAKUDbjxSr25Hy2aTQygK\nAgXQmGBbruxCV/tfgFGZrR5sxEBYtXk0TVNE8Gl5T81SUrkZTl4b+cW91CTA\neWB2ZfVvLjyeFXwMbEto6ScAixOwtiMyTYz73vLQ/Zg28v94NTpWWnjnIxRR\nkJuKUzG5n6dS1Z0BMSZb0ifoUfQMdP/uMvBDFwKMIFtEtUfeWVGkK8mpXi2/\nKjvL5YXQsyk60WoAQqa49vXCIjGGaoh02ahGXMqKQB1dQ9YhEU/nEolLELHk\nPsKKRm5ari8fiwKHnZtHHYy1tnKlWNFmZNu8FwbuJdonooP9Raexyk7V01Lr\nOLJI9HyPbcwBct9GOtGohphoxzPw23Yt7KURNHBciHDg7B8x27uCmZ/6laMx\notseEpGMgmTks8cp7Dbdipce0hFmk5FMR5rAzQc3GqqjdvN3b/GZpigtBQr5\nTskggDfmKV0iFR4edn3uE4gfzdNglpg60Jzp6ZdOeP/zHX0PI+N15IflLLEy\n9JzANPeThlByBDvc12nVGNE0lzs3oQ+whiBRvl9oWO9XM/c3yA6kuAgkHdLB\nmQCltG2B4vkSvNmbAgZf7JSy1q0qAyj8z6gE+lmiiFDOyqz4szMAeJFCdcRm\ndJzrj2Lk9CaFDOsQBpgZlB4+KW23pKyG1qtx2k+0+zSLlJDJZpaSsD5cA3+i\nlxwQ\r\n=idLT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXZKyuCyLof9sVFNgaTrF5jjEy6K2R6KucDt7eTjPXqwIhANTbYCxQZ33IMnRZzhxdxXd3jw3sqQv03lFxGF0vuw3N"}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.0.0_1617914841358_0.903907748201767"},"_hasShrinkwrap":false},"1.1.0-alpha.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.1.0-alpha.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"posttest":"eslint . --ext .ts --config .eslintrc","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif-dev readme && git add README.md","prepare":"husky install"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^5.2.7","@types/node":"^10.17.56","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","nyc":"^14.1.1","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^8.10.2","typescript":"^3.9.9"},"readme":"<h1 align=\"center\" style=\"border-bottom: none;\">capacitor-set-version</h1>\n<h3 align=\"center\">Write version number and build number for Android and iOS on ionic/capacitor projects</h3>\n<br />\n<div align=\"center\" style=\"margin-bottom: 3em\">\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Version\" src=\"https://img.shields.io/npm/v/capacitor-set-version.svg\">\n  </a>\n  <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml\">\n    <img alt=\"Release\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml/badge.svg?branch=master\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version\">\n    <img alt=\"Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/status.svg\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version?type=dev\">\n    <img alt=\"Dev Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/dev-status.svg\">\n  </a>\n    <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Downloads per week\" src=\"https://img.shields.io/npm/dw/capacitor-set-version.svg\">\n  </a>\n    <a href=\"https://github.com/DKrepsky/capacitor-set-version/blob/master/package.json\">\n    <img alt=\"License\" src=\"https://img.shields.io/npm/l/capacitor-set-version.svg\">\n  </a>\n</div>\n\n<p align=\"center\">\nBuild With\n<br />\n<a href=\"https://oclif.io\">\n    <img alt=\"oclif\" src=\"https://img.shields.io/badge/cli-oclif-brightgreen.svg\">\n  </a>\n  <a href=\"https://github.com/semantic-release/semantic-release\">\n    <img alt=\"semantic release\" src=\"https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\">\n  </a>\n</p>\n\n# Installation\n\nUse with npx without install:\n\n```sh-session\n  npx capacitor-set-version [options] [version]\n```\n\nOr install globally with:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\n# How it works\n\nBy calling `capacitor-set-version` in your project root folder (where package.json is), Android and iOS app versions\nwill be set to the package.json version. Also the Android build number will be incremented.\n\nYou can pass the version number as an argument to set it manually.\n\n## Options\n\nFlags bellow are used to change the default behavior.\n\n| Option    | Short form | Description              | Type                   |\n| --------- | ---------- | ------------------------ | ---------------------- |\n| --dir     | -d         | Change project directory | Semantic version x.x.x |\n| --build   | -b         | Android build number     | Integer greater than 0 |\n| --android | -a         | Android only             | Bool                   |\n| --ios     | -i         | iOS only                 | Bool                   |\n\n# Usage\n\n## Examples\n\n```sh-session\n// Set version to 1.2.3\ncapacitor-set-version 1.2.3\n\n// Set version of project on folder ./my-app\ncapacitor-set-version -d my-app 1.2.3\n\n// Set version with specific build number for android\ncapacitor-set-version -b 1546 1.2.3\n\n// Set iOS version only\ncapacitor-set-version -i\n\n```\n\n<p align=\"center\">\n  <a style=\"color: #7c7c7c; font-size: small; margin-top: 2em\" href=\"https://www.hausenn.com.br\">\n  Hausenn Technologies\n  </a>\n</p>\n","readmeFilename":"README.md","gitHead":"57edde5b08ceab2fd7f42b669f6d925bb0ddce60","_id":"capacitor-set-version@1.1.0-alpha.1","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-OC6E8TITckR8cuYMOmcYgHXHqBAROxO0YWykA2Sw35HK0k2aqwJatyyXaK7jVFTL2jM/VImanWFlWPzNB1J3Rg==","shasum":"4e414b29ac69cd149a25b99f042af522eaf24fc8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.1.0-alpha.1.tgz","fileCount":8,"unpackedSize":9066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgb668CRA9TVsSAnZWagAAaAAP+QAIl+YQ0On9cHMyoA0p\nL9daXdxE0+jk109JOGka0QYJByPMkiImtXI5QexgnPFNrWQzxx96fzSfq6Ii\nWijxzgvVdeEpc+HHpWLU8mPtrBMOzAnAnSloUR3dq8zKbgJzs9h+c/bQHtd4\nB4HkDV8uH5l/K26nXWhAeckDFIK80ve772QNc6Ic0/fMn/1X+QMCnqERVgfK\nY0/1O1KLXlI4+ePA9gEV6MJyiw/bzAZgJIbu0QYCRQT10ROlPD5IdX3DcFcM\nQTGAe1wCYLpayskm4+jl3RH6naK8XDQJweT43gxjjT8H1/ODvTZW4UyC7AHh\nf5pN19x1zA7vIS3nUqQmPEM66VeCxg2lP+7CegePiPN8CpGNuTA4iTvEFl+d\nC3wjLZJVnOsCQvzyUoJDm4IPsmNx4Ae90rZa/aX+V3TA7ZU5dSdeR2P8f/fT\n3vLwEVViaxBDkqANGUOOMecEihBGLt5jkfQR1mKmSe7+PYTgpIYNs0BEf4gC\nkUKhDOxVhqGZqymSsRNB48YHw9iz9qVcWuIWLyQ9RqBV9ZQ2TV+YLM63Wpp/\no8/vsqwvcE0FcOvQHFKQ5Ufk1e01rh4kGOPgOiG/1pu2F5147Lph5MKA+iKu\nkPskyx4S36S0r8/kSbGvMKy82z4CyN+MB/AR0VZjYgoBMWRuWm51iz0+cZQb\nsa1I\r\n=DWP/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCGBxw+w17GwZ/PwLmPvItepQKvAxRin0CJirK6rSSKxgIgVceXl48FCsMY+ddn/rzOvel7P4ISLY5F9zzeHzmdXZE="}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.1.0-alpha.1_1617931963653_0.12744740441184232"},"_hasShrinkwrap":false},"1.1.0-alpha.2":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.1.0-alpha.2","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^5.2.7","@types/mock-fs":"^4.13.0","@types/node":"^10.17.56","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^8.10.2","typescript":"^3.9.9"},"readme":"<h1 align=\"center\" style=\"border-bottom: none;\">capacitor-set-version</h1>\n<h3 align=\"center\">Write version number and build number for Android and iOS on ionic/capacitor projects</h3>\n<br />\n<div align=\"center\" style=\"margin-bottom: 3em\">\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Version\" src=\"https://img.shields.io/npm/v/capacitor-set-version.svg\">\n  </a>\n  <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml\">\n    <img alt=\"Release\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml/badge.svg?branch=master\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version\">\n    <img alt=\"Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/status.svg\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version?type=dev\">\n    <img alt=\"Dev Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/dev-status.svg\">\n  </a>\n    <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Downloads per week\" src=\"https://img.shields.io/npm/dw/capacitor-set-version.svg\">\n  </a>\n    <a href=\"https://github.com/DKrepsky/capacitor-set-version/blob/master/package.json\">\n    <img alt=\"License\" src=\"https://img.shields.io/npm/l/capacitor-set-version.svg\">\n  </a>\n</div>\n\n<p align=\"center\">\nBuild With\n<br />\n<a href=\"https://oclif.io\">\n    <img alt=\"oclif\" src=\"https://img.shields.io/badge/cli-oclif-brightgreen.svg\">\n  </a>\n  <a href=\"https://github.com/semantic-release/semantic-release\">\n    <img alt=\"semantic release\" src=\"https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\">\n  </a>\n</p>\n\n# Installation\n\nUse with npx without install:\n\n```sh-session\n  npx capacitor-set-version [options] path\n```\n\ninstall as a development dependency:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\nor install globally:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\n# How it works\n\nCalling `capacitor-set-version` will set your Android and iOS app versions to package.json version.\nAlso, Android build number will be incremented.\n\nYou can pass the version number as an argument to set it manually.\n\n## Options\n\nFlags bellow are used to change the default behavior.\n\n| Option    | Short form | Description               | Type                   |\n| --------- | ---------- | ------------------------- | ---------------------- |\n| --version | -v         | Set version number to use | Semantic version x.x.x |\n| --build   | -b         | Android build number      | Integer greater than 0 |\n| --android | -a         | Android only              |                        |\n| --ios     | -i         | iOS only                  |                        |\n| --info    | -m         | Info                      |                        |\n| --help    | -h         | Show help                 |                        |\n\n# Usage\n\n## Examples\n\n```sh-session\n// Set version to 1.2.3\ncapacitor-set-version -v 1.2.3 ./\n\n// Set version of project on folder ./my-app\ncapacitor-set-version -v 1.2.3 ./my-app\n\n// Set android version with specific build number for android\ncapacitor-set-version -a -b 1546 ./\n\n// Set iOS version only\ncapacitor-set-version -i ./\n\n```\n\n<p align=\"center\">\n  <a style=\"color: #7c7c7c; font-size: small; margin-top: 2em\" href=\"https://www.hausenn.com.br\">\n  Hausenn Technologies\n  </a>\n</p>\n","readmeFilename":"README.md","gitHead":"54e5825c6aa52eb891e7074d3d2998edf33f5783","_id":"capacitor-set-version@1.1.0-alpha.2","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-9ub28ZygqHU+HszN8G8NIPJ58PlJ7Y6E3OjjVa1FpPw/MMP7oxNU9JklqksSzrHm4NLc/+8F3ohBbylBsCCMwA==","shasum":"b7ed65cf3bad94d08bb9c4d417cf60fbd48733d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.1.0-alpha.2.tgz","fileCount":12,"unpackedSize":16143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc5NdCRA9TVsSAnZWagAAdDEP/j52E6tVFL3ZuY9gq1Tu\nh+52N8Q13lHktiZ4huLrJDOp4PTfMYz20q224f0Qg699AuTBvR8g0UdJIZZk\nbDJfgzF5fz26WhJyKHEc9ibUrvK4mHNHcn0UetZOxevS+m8k/BrY5N0Fn1VU\nDZ8lWGpeogMIx/Gh93ENdYRiF213hEpZOFJYUi9azUgO7EFN2idJMfwy1JX6\n+FdHD7yo232i7k8gdyOErE8+27Df18ptXogkuEtXVaR9QG+yh/ViTBLz2rBC\nHXsu/ChTk7PqJcrDI6vBvaae+GYX0xGEevmN9T5APut4kEkXvosHZT987adU\n3A2+ooG6JIi1C4tYsltOvfXUyrh9R5GZ6WArwnx6KFKk5bqjFrFCvdYMwrpW\nrrZYyMOPzLxT3WzFYqixOSUQuM7BBA6BqqdUnxPqpZDcXr4lKVlf5eiSpWxa\nixNr0zv0FS/nlsyBilxX4TJw6gIU+2HYKSNf/23YDBU38x4qh2eIxPKicJP0\nhD7XynuVvij8UIOfjf5JLlBNSQy7WZYLdqFqWuy1nxwBnHy66SdF4fEYL2qg\n7cDpCrFyfxQCARw1id0r1CLOnbaHCVCczgC84HC/XhVE1GBGMrEr0WgtV3QM\nYPqt5Yr+kqU/Ulyb9grxIwfv74X56FwNfYJh1oWJAFGH9/1uBXapnpG3ZD+t\nH9lQ\r\n=zXZU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDJzDsC+kwoXfm2vnXdixhmi/FPAIs47sqjmvfuFNsIQQIhALxpXrRNXYRyuXuTo0MG+rTP7/A3ZuSBmyNn2iO8qa0z"}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.1.0-alpha.2_1618187101269_0.8926079880992996"},"_hasShrinkwrap":false},"1.1.0-beta.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.1.0-beta.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^5.2.7","@types/mock-fs":"^4.13.0","@types/node":"^10.17.56","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^8.10.2","typescript":"^3.9.9"},"readme":"<h1 align=\"center\" style=\"border-bottom: none;\">capacitor-set-version</h1>\n<h3 align=\"center\">Write version number and build number for Android and iOS on ionic/capacitor projects</h3>\n<br />\n<div align=\"center\" style=\"margin-bottom: 3em\">\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Version\" src=\"https://img.shields.io/npm/v/capacitor-set-version.svg\">\n  </a>\n  <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml\">\n    <img alt=\"Release\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml/badge.svg?branch=master\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version\">\n    <img alt=\"Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/status.svg\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version?type=dev\">\n    <img alt=\"Dev Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/dev-status.svg\">\n  </a>\n    <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Downloads per week\" src=\"https://img.shields.io/npm/dw/capacitor-set-version.svg\">\n  </a>\n    <a href=\"https://github.com/DKrepsky/capacitor-set-version/blob/master/package.json\">\n    <img alt=\"License\" src=\"https://img.shields.io/npm/l/capacitor-set-version.svg\">\n  </a>\n</div>\n\n<p align=\"center\">\nBuild With\n<br />\n<a href=\"https://oclif.io\">\n    <img alt=\"oclif\" src=\"https://img.shields.io/badge/cli-oclif-brightgreen.svg\">\n  </a>\n  <a href=\"https://github.com/semantic-release/semantic-release\">\n    <img alt=\"semantic release\" src=\"https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\">\n  </a>\n</p>\n\n# Installation\n\nUse with npx without install:\n\n```sh-session\n  npx capacitor-set-version [options] path\n```\n\ninstall as a development dependency:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\nor install globally:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\n# How it works\n\nCalling `capacitor-set-version` will set your Android and iOS app versions to package.json version.\nAlso, Android build number will be incremented.\n\nYou can pass the version number as an argument to set it manually.\n\n## Options\n\nFlags bellow are used to change the default behavior.\n\n| Option    | Short form | Description               | Type                   |\n| --------- | ---------- | ------------------------- | ---------------------- |\n| --version | -v         | Set version number to use | Semantic version x.x.x |\n| --build   | -b         | Android build number      | Integer greater than 0 |\n| --android | -a         | Android only              |                        |\n| --ios     | -i         | iOS only                  |                        |\n| --info    | -m         | Info                      |                        |\n| --help    | -h         | Show help                 |                        |\n\n# Usage\n\n## Examples\n\n```sh-session\n// Set version to 1.2.3\ncapacitor-set-version -v 1.2.3 ./\n\n// Set version of project on folder ./my-app\ncapacitor-set-version -v 1.2.3 ./my-app\n\n// Set android version with specific build number for android\ncapacitor-set-version -a -b 1546 ./\n\n// Set iOS version only\ncapacitor-set-version -i ./\n\n```\n\n<p align=\"center\">\n  <a style=\"color: #7c7c7c; font-size: small; margin-top: 2em\" href=\"https://www.hausenn.com.br\">\n  Hausenn Technologies\n  </a>\n</p>\n","readmeFilename":"README.md","gitHead":"9448b876b160886990c1a63e8fafebd82a78129d","_id":"capacitor-set-version@1.1.0-beta.1","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-Wzq2izoOTfNoyrcEvqy4LTyOUwNfuYVkGGx0OWMiZV27MSHB5b3PfQTDpDAAaPyVFQ56i2N+//p7GocQ8hw7Jw==","shasum":"d56c4fc8a48d83fc1d7ab4cd471fe4de756f05ca","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.1.0-beta.1.tgz","fileCount":12,"unpackedSize":16731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc5ivCRA9TVsSAnZWagAAPzoP/2Ryhj5lhuueECHFEjgh\nptUDoNEcciEQahAHYYRDVcxuE/leGeio3ALYbJwCgCkD9Zs6ELrlNZl1GHe8\nvZeqmfEC688XEwqZ+Xu7WPlnDkcsxtlK/zLiFYcZbL35WsHzRz3MgDrhK8aI\nV7jjDircp/dqmjhLQDBKMSpKjMvE6KIwzxN0FcdIxQu8Xj9Xf9CyxHhFp1HE\ndiaYvoNvc9UhcI0c1JZY0qR8xec+zBAyIARuR/N7L0NrNJgYkGnBI2law/v0\niXLweuQ5WGuKFhC3wh4eWC9PIaOkpn/Q5AbnUidZ0+z5AimhWgIExui5g/o/\nLHmEq+ICuRs76WXsi9NJEGWdVAtOK1VPF6ypehZhjYrbn5HVMHmnEy6u3oI8\ntbqIBYw9VyKok5EejZPWBFx+drnees7gVoWiwA92fJoHWBf75WTjwbjXkNFi\niMUZrqZWrSB8s1c3VsArhglszjZgJUFZO/WBGFNLneM9RopU5rTg2VDXXes2\nrdrjbuy8qjVgxWwWXI88hpjLJDP3sBR7cRFKYGrC4P3VreOd1fG4fKFU9wps\nsGfbs52mfGBEKqCKApeFsb7Janv5DIJAYyhWoeCbaHaZmt9dPfoPNG+5IYHd\nwjpX8KpYmNnG8zos5sf66Se9ombU9ph9RMz+K23dXHaiv8S0Bz5DAaj8ZnKf\n2LY2\r\n=G/Sz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBsziWlYxa21BTo/bkizDj0wemJeUTpIDUPvtnJnx3AxAiBoXe5IhEbzAzHqeos0IhNMpzmjRLYVfizZpe1np+5OYw=="}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.1.0-beta.1_1618188462559_0.40652414062100517"},"_hasShrinkwrap":false},"1.1.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.1.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^5.2.7","@types/mock-fs":"^4.13.0","@types/node":"^10.17.56","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^8.10.2","typescript":"^3.9.9"},"gitHead":"422c7467954b4a65fdc1dfc9642185ef8c2f3785","_id":"capacitor-set-version@1.1.0","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-PDW5ZG6fT5FjDoMT2sJhoLtLfZQHfPBAJ/4ONszh232ZWLjDta6eiEmDh12I2cYL33yTdU/Rf/qaO+kQt0jkVw==","shasum":"e39077e606d845bceadf77285fdb19884b32e631","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.1.0.tgz","fileCount":12,"unpackedSize":17299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc5miCRA9TVsSAnZWagAA4soP/1cqThRvk1DBVC7uxEN1\nSj1v0fjImntSL3HN+MSOcKcNTkFE14wWdm8a2noU1qlKjA6MAVdPU0SbVjxl\nJLlRw29xCNyBD5GD+Y67IF/IuXEnUW+ySfyWXGfSPZdrcEN5DL+bLhQFnv2o\njEgixnqgtU8JFaUI6VIxwlH2ZzK93z6EV3xrW8tsgb0fsVEyhZWacBf9HZVd\nG0tJ+q6NOksBtFLQwJ1cP3QOFt7V71Q6AvTmY7QRqYajP/IRr5Q4bz4WbaEz\nQnPnaoYySsbEaJKaklBBCaXXCuy+bMMpsNiuy0axg2erITeSFzuicgO1fOkD\nlmdNyp3AalYvQEGgHxCviBYaIWYvz9Mx6GO2T9X505m1F2WnFGmup1LczssM\nVbNrwwEcKiQK3eqeOY5zkQTE4SiMT3OF9I2brnvIONNyz9/jgsrJV7C5yQXR\n4zwxOkPQHc4X/sLEq7I0ro5Tarqt41kFmJW4XqbkvwMeIq6MYaf2TJXAPfrj\nrlsn9rq4Z42Kflk9zfld24RCloS83/jhUKlOhakukPwJPJBoy3RCjGzDzCwp\n/WRpPE33wyQnVzoojqyDvhAj8EuUtobsCJAjoEsaY0nk9+AHjVbVC/3cy25D\nVI3iMPf9ZWQvmfKmFXVGle5zVtFJeP922qtcqLNBpDln8/LZAekvr9PvWFN5\nq3nI\r\n=ysxp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBZIPtZHPhT60dfy++18voFk51pN3o5e2xIzmu5BaRZmAiA5PhbIMrlyq7FA4HIKcxMxvg0woa2o5FHJSW/xsUC5DQ=="}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.1.0_1618188705692_0.3383797526699208"},"_hasShrinkwrap":false},"1.2.0-beta.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.2.0-beta.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"readme":"<h1 align=\"center\" style=\"border-bottom: none;\">capacitor-set-version</h1>\n<h3 align=\"center\">Write version number and build number for Android and iOS on ionic/capacitor projects</h3>\n<br />\n<div align=\"center\" style=\"margin-bottom: 3em\">\n  <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Version\" src=\"https://img.shields.io/npm/v/capacitor-set-version.svg\">\n  </a>\n  <a href=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml\">\n    <img alt=\"Release\" src=\"https://github.com/HausennTechnologies/capacitor-set-version/actions/workflows/release.yml/badge.svg?branch=master\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version\">\n    <img alt=\"Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/status.svg\">\n  </a>\n  <a href=\"https://david-dm.org/HausennTechnologies/capacitor-set-version?type=dev\">\n    <img alt=\"Dev Dependencies\" src=\"https://david-dm.org/HausennTechnologies/capacitor-set-version/dev-status.svg\">\n  </a>\n    <a href=\"https://npmjs.org/package/capacitor-set-version\">\n    <img alt=\"Downloads per week\" src=\"https://img.shields.io/npm/dw/capacitor-set-version.svg\">\n  </a>\n    <a href=\"https://github.com/DKrepsky/capacitor-set-version/blob/master/package.json\">\n    <img alt=\"License\" src=\"https://img.shields.io/npm/l/capacitor-set-version.svg\">\n  </a>\n</div>\n\n<p align=\"center\">\nBuild With\n<br />\n<a href=\"https://oclif.io\">\n    <img alt=\"oclif\" src=\"https://img.shields.io/badge/cli-oclif-brightgreen.svg\">\n  </a>\n  <a href=\"https://github.com/semantic-release/semantic-release\">\n    <img alt=\"semantic release\" src=\"https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg\">\n  </a>\n</p>\n\n# Installation\n\nUse with npx without install:\n\n```sh-session\n  npx capacitor-set-version [options] path\n```\n\ninstall as a development dependency:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\nor install globally:\n\n```sh-session\n  npm i -g capacitor-set-version\n```\n\n# How it works\n\nCalling `capacitor-set-version` will set your Android and iOS app versions to package.json version.\nAlso, Android build number will be incremented.\n\nYou can pass the version number as an argument to set it manually.\n\n## Options\n\nFlags bellow are used to change the default behavior.\n\n| Option    | Short form | Description               | Type                   |\n| --------- | ---------- | ------------------------- | ---------------------- |\n| --version | -v         | Set version number to use | Semantic version x.x.x |\n| --build   | -b         | Android build number      | Integer greater than 0 |\n| --android | -a         | Android only              |                        |\n| --ios     | -i         | iOS only                  |                        |\n| --info    | -m         | Info                      |                        |\n| --help    | -h         | Show help                 |                        |\n\n# Usage\n\n## Examples\n\n```sh-session\n// Set version to 1.2.3\ncapacitor-set-version -v 1.2.3 ./\n\n// Set version of project on folder ./my-app\ncapacitor-set-version -v 1.2.3 ./my-app\n\n// Set android version with specific build number for android\ncapacitor-set-version -a -b 1546 ./\n\n// Set iOS version only\ncapacitor-set-version -i ./\n\n```\n\n<p align=\"center\">\n  <a style=\"color: #7c7c7c; font-size: small; margin-top: 2em\" href=\"https://www.hausenn.com.br\">\n  Hausenn Technologies\n  </a>\n</p>\n","readmeFilename":"README.md","gitHead":"f877902e995a1077b9f72d48128457d8b820f501","_id":"capacitor-set-version@1.2.0-beta.1","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-tep6lVvoQkjWFw3Xn21s1wAVeNgsjY4Oc2WjxaMYNIYbC9pUp8sfH1zUv7v8ZMqHbqNPWoHzs/g8VXUZ4VnTdg==","shasum":"d409cb48efcc84fcd7c8ea5f47b4f6b82c2f9426","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.2.0-beta.1.tgz","fileCount":12,"unpackedSize":18040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc75dCRA9TVsSAnZWagAApcIP/3Jv+uPK8fP+C32MbuJB\n7SbXlERD4dSe6j1ATBK/uyE5YX+Cl3bIukFe+T9cwY8v2CZUzr3z7yl0VIEu\nV9moxATRY5XKCfUzFtq/1kTs7tM3NSHB9ZFPatFcA/pZqkX5c2WyKfFkE/wU\nzjO5xX6DVv2UFFu/kb8V3JuyT842TNNzG1Ksyr7X4beVf/wb7zIAzL0yasVR\njl1GwTdgUTNW/HHQIzAVAEC5Y0QrVgGL2/DlUJ6o8AojcQBV6JJ+0fcQ61Jh\nnj5xnaRVP7Ab+QIddtspegFAIZ5uLs0HcZg6juWRczn+W8r9F5OzEgwCuggJ\nsqbYlwmUhEudZdhYXiEtieXjo/ogfDjARr5EciA0YrvL4oMOkF0CfgJx3uh/\njnKezKoeIcNOrgT019kyErmkFmygbuVljgin33bUXqLBSv+bDR/Z4/tQ8nM7\nKrsUJ1JmrSTbkLAK5I/Oi91HPSql/mBRALUuYVPhBzqwO1SAPZ72TulJqrXw\nM7I5yuCVOqEvkI2465fbsPYkoYHUvNJNKOPNjcZYKjg1JKdbR20+prELmhJW\nPYU59FWQNktBfRYens26QGSIoeKtajOQXMGMzB+i2edzrX8D7dnKea0LyOMj\nx6w0ctlk6G9SrW7His38a/a8FgbrdcCUObWhI3OLHspVJKLjEjHuedkNljXM\nN0J7\r\n=oKzJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCU/u5yOQX8aaHr4JKHvMHBQRoTB8rKDlxNb3zcTlYZ2QIgY+Xfzrf50rD1ZTVgfjh++LP/WPg4zZrD30P3GKGaMBU="}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.2.0-beta.1_1618198108939_0.71120926363254"},"_hasShrinkwrap":false},"1.2.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.2.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"aa8a3cf0ada89251031d7ea516a039ed26069806","_id":"capacitor-set-version@1.2.0","_nodeVersion":"12.22.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-vWiLioThZu7KmRLnOwdsqp36IdGYxLeBUwueV1kcv/mh028PnGLUIOUzkyGMuL9Si6MDrY4O5iiH+5pTWOLTag==","shasum":"39cb210bdcd88df8a8597a89d66b47dc61f2b333","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.2.0.tgz","fileCount":12,"unpackedSize":18289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc77sCRA9TVsSAnZWagAADPsP/1LHY0xo+sKA2IUFI7H+\nrgTGPEUsWaRvcpL+BzMzBFZFjz4PW0P/iAD177IMBUSPjZfrM1USbPKub+8S\n2NWk7mPhcC+Ceiw9F4OixKhnjBaTk1UpujCwoW5lXNE/u02N4EpAurx/Qnaq\nA74CRZJ7PdSrKCE+zIsOoiRF7wpQz3GzE38sMu8xmOB4PDxF2Ge97Qcm1YAI\naVyQhF7UJj3oNiLLOAAeN6n5AvGp//6A3I3BDC9ULz7sejszEu/9PKMyXmvs\nBsKDMEEfm8TSEXh2/PG1z1obFJu+HaVcA6CepBvBG26emwrTFzcoMiXXGhQo\np5iKzcjFfoZW6PwS04JmO9GdiNYdBd0yIhwvS9fgfS06IE61qCd6CuEwinU/\njAk9WZoTiP9Ar4z8dn+L8iROWjoOzWs8IWvs4fAwTnqGtdeU/ntCtpfgKJj5\nVwIv/8YGvLJtmFrQYeqp0dbj0sOpKX7vfoPBIVeSpYEyiSJCK27JnSPXBLLZ\ncUApjD+jS5iPa4i2Ijye4UE6OARP7xKKjp/Osxfxyp27/rfKgHO1WCK/yqKY\nx9VAmihKbaCg5F5jf3nz0VGZPj3IHAbrNLMh959mw6dmWN0lQM3+NxiOiZik\nju+xlW50dYxOLyq1nRD+4J/BXa0BQttZsceLc0X9Cr6Vt63WhVhqlJ3aUHwI\neJ4j\r\n=OLua\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDOAXSDiGJUv3PEEwcXk6A542VtpQ6m78g0w5b/pfYp4QIhANMDCGCOeo+ZsXLEiDTA8nwYk6BqPmk+MfkE4v2zuTP8"}]},"_npmUser":{"name":"deployment","email":"dev@hausenn.com.br"},"directories":{},"maintainers":[{"name":"deployment","email":"dev@hausenn.com.br"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.2.0_1618198252318_0.0631932464284175"},"_hasShrinkwrap":false},"1.2.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.2.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"e2fbdabd9657c9b771a1121d115a459660d1a751","_id":"capacitor-set-version@1.2.1","_nodeVersion":"14.16.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-UWXsZ9GwJnDtXDPk8ov39XHMZb/g8UO+ImQcSAKpXUjx7BTq++x1MZrrRSUO6pC8k808jBi3QC/asewZC0G2VA==","shasum":"8377af6c4d44a2c380c29ca901ac369ebab450fd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.2.1.tgz","fileCount":12,"unpackedSize":18347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdeWPCRA9TVsSAnZWagAAYs4QAJ7udFq7P2m5rxSWWrJZ\n0EK3NYSkq7DuE42GQ3o6bTV+HvA+m2k/9i8F96w/bFNAO+RpcAPR5j7q5iAI\njHyWHfhtrA4QXMhimVmfYK0rREnOPWMIuMe0+yMLalYBhuT3fc8Zy/lvKoUA\nnq0HgQXJs2nh3qEhlGlH07srgVg4VPNrdIGtaK8rwhXMhjhg10GVvHQL/dAC\nRrfbWdtpQs3ZO2xutTiUm+VasjIrAr9aMNKIV3p3WFo1xvVJoOtb6kz8LofV\nEtetX9TYPB0pbIb8RzGZAxXb3yHWhhYAKXY3jAxB2TQdiBWCqVCYdTkeZEJ+\n02egL4gEqcqJfrakkiDqkD1++m8lFKxbE/CKKn2rSs9LlQNVGzy80U5P9wfo\niww38G9yeNCKKDk18CadVEeudkUg2zjqmjQDkZmVm+vpoMD1SRSeFvVpJHkv\nITyAjmahqYrHyUk57iaujBmRvmC9keO2gf5Kg5oH6gbTBW7qij3lKd55Ddbz\nB/loiRK4pUX/tB26cZy+v+kzVyIvK9fZD9BOGnlCHotvW3Y2dcRaoF1pGt7P\ntVRWKw9aqCWzfcW9qiUvfdarohtCMotZPWvLYqxiQqZSmINiH8unIwwG7gDC\nCz3BMkhdvkSSgya8xzHEs9T1HT9P/h7OZiKqJvMs6wZ8rotMQo1SGvzjc3vS\nF3NZ\r\n=urU6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBJGH2f+pYq0BZM+/oBlPT4ijN0b8oBvZiS0MmZy1gXzAiEAqV9PDiadbw+o8PbcBLmJ0lqLET7Zrd3I6DZ5Qp/c0ZU="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.2.1_1618339215109_0.25821694786439564"},"_hasShrinkwrap":false},"1.2.2":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.2.2","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"e1bb2ef0c9c7c5dbaa36ac47776f4c1f511158d4","_id":"capacitor-set-version@1.2.2","_nodeVersion":"14.16.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-YZba0VawEeyPZx8OtaG4qGh8nZSnwee0jakW5z0DhdGA3F2XoA4vsBBDuJrKmvk/sVH4EZrj0qVWO9J+Rd0P7w==","shasum":"8f77c4af5ba80ab44f8c0924b57da7ba5b55ae54","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.2.2.tgz","fileCount":12,"unpackedSize":18458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdeZ2CRA9TVsSAnZWagAA9xwP/A2tBVucA+AB3hxqH6tE\nB3VX3vGdRY0e+GXPmqjiX7Wy44rJ0ho7gHgTb/azmsGPa/246enGx37VJhGN\n+S9iiTqlaZhpa5QgZtemSwJl08Qi7OvuSitdUrQ8IyCD3oFYktzECZz4CqqN\ntCtN6WQ/DEbC6URhbRZ++7hh7B9W4Y/35Nt9sOykL1o6tm3mlhT+B2eYzDQp\nHSa464Y55ly3kJV38xrfZQTDXFTImyl62Iz9DCf9zxpIIzJGya7yQVLOmhtC\nf3vWPmTuN2i0XCi62TP9gvgO7E3G+eLyUPBmrLvWXNwTMdYmSrQM0VLafRt8\nP4E7PSZ2Ecf5QlQ743eT0fvR6iFhvCjelAQieCqtR3+aZy3A3+ENOTlYWbO9\nxOiZQHP/dbZmGWuvD4riuIbJNEL5nOLbUis659qbTpSid75J5XIh1vlNXi09\nJa+4TK+I/sVp0Aw17gK0qKENlqn9XFn5JTAfkZBypkagO4xHfSTbkTp5oNyG\npeBD2i1mzi070BaSL8ziYF9+U2v/8fEmT0tF9vxYp8JVvSXOHfwyU2Bon5b0\nq/+NRb53umKhHeWGfF4ate14r+31qHROGPJfuTv3ufb4HnKCVkCV92BmASar\nKfzPCyFtur43GfL2rCEsJzZxzuOvJ/Cg0Q8f4xXICgMdARnNsjTbr7sEeLBh\nSwuP\r\n=1PQh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDaTSyPKkPyIy5HzWoBDLIG1BpzTyyjD/xSyB2qxzCCWwIgE0AAuqD98n8XP6bBqT7yAWJpcyaa+TR8EVHjj54TBiE="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.2.2_1618339445574_0.5399950149695343"},"_hasShrinkwrap":false},"1.3.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"38a14f95d7fc9fe4333175d57c4844685a97b2d9","_id":"capacitor-set-version@1.3.0","_nodeVersion":"14.16.0","_npmVersion":"7.9.0","dist":{"integrity":"sha512-x/JNkJ0IQJocx7oavx2sKGm4R7LqxL3vHaWB2Y62xIZiABiM2hUICTk1mWthsNLZ7I6p7Rbz0tawWcqUkSY9bw==","shasum":"6af44f4740c8df7ee910b1a4c4ffcb0b29689f86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.0.tgz","fileCount":12,"unpackedSize":20076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdfkjCRA9TVsSAnZWagAAIZ8P/ijRCWOCCkmSsGdJIWkZ\nV/xxenoY05p/vdcDEUVPH29YBo4CYg6I48MH4NS1dgsLHaVJQltfWdg1OTj7\n/d4DNgSqnZ3t1KCm1PFOdbCuehVrmcH3qTq9y5K9YlWjLSZUt06h8e56+jps\nJKrR79X0x0Aj46h0Kmd5NbNEnYJriFPvuzYS1AaFDUHW64Y7ecyvCGuQQ2Dq\nWySQPF0NYAyE5khXZNUzraBu+LsRkI8ReGmslmfFiItREU/nqFwjiTnCibHw\nm+9KHPA5Ig9vxhJkbktqP7Pp0Z2A0fCTARmvgLw1pRgpCUMs9cRwFmP4yZSy\nHZDiYVRhtb7xMPwA1OQBgGcSx6x5RBf0gvKkZnWq9b3dSy2O81rkcbub6zeA\njj70wZVyYxYEeNmbe1EX5/XBgP5iDSw51UlwGHdurRatk42AXLCC2QpSlMgm\nKrfzsuDByz+pvma0DlbfNJOsCrDS3rYJ9x8kGQpiqv7ClutojnbONolcW00m\nNaLH9keHzocIbOpjJLVuUxgNFCnfE02FigVjcYILNJ+Zorl7eiGYtNaruRn6\n5IaRcBFRW9sz+BD/HFFbcvQuNr0PBSBu7DetTKsyCfBodwC0pGMEr6D+HiLz\nScO0AqfAyLcO1Xc0j6t12uaWapFR3dLprL9QvLXnBb75FQUSXQsfEIfZ0YDF\ndon6\r\n=m0SC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJ7niXq/17u4p3jiWTgsiNcBzpbXgmJAK7d9cUIQ9o5QIhAMzzDQLCiYtndeniW3/E/6UchDj9hoSuVFpGDy5q84oh"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.0_1618344227316_0.6098025383244077"},"_hasShrinkwrap":false},"1.3.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"f4f23405f2474aa4d60db4de7f601bc222ebb18d","_id":"capacitor-set-version@1.3.1","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-NVC1EFxEmaKJ22nviEvdI4hyG4TsvV/n6krPYNl1DQk+Mc6Jt4DyXXB2ry1g6T0Pyj1tnQoeUNAsHBJ7s8oR6w==","shasum":"2e706cf282dcafff47ff6d159e291c4d1fe74e0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.1.tgz","fileCount":12,"unpackedSize":20187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeG6iCRA9TVsSAnZWagAAzOUP/2klpEq1152HojoHgYxM\nC//dBIawkY6Un51jfV5h5Q+SIGzpIAwf3hNBSA+/N8dZnPW/s0wXczo7u/ZE\npzZ4in+J9kcHkKpxK6Bk4DmvU4UenNKu4rLFibCcti1c2my6M1w+plgLL2y6\nnwG1UutjnOWKxvrvrTzKuKQtBcMTCHGFvLENehtskUpqxxXOKSSEsr7eon5R\nrUlY+thM13+3NHl06HR+YFwktWwMh4m3qLS6gZFG8zmRlU7HzQ/RHkOKRABw\nKmCmuBlBGnKABk0HjM16ABxi9YNrYCIbZjB3fmTSY4kOTc8Weyye3hKEnMFT\ns1fhX5YOBqJtle4yoW1UqpjHDltPce6LGZUUzSSKe8N3og7+N9bqMNjPIDxI\n2MMbdXZio95B5e52z0ruDa0LbIRj4i59WJOrOX0FK8S5ndkRukYCdES6rWE0\nhJJpceoGzlkoGLJcIyu05wjIo3EErBhDyJDL53E7MXgxNxLqAjZcFFvG2YQ/\nA4imHPh8UrmkrRFznIp/gGx1pT72s+hdeKa7nGMeRHCCuGYw3oHJCAM1t9Yt\nVZ09lBHunGcGQxRkxLqwsLswEmI2H7fvO1iIKipr78P+pFZVI+J/YZLFeJRW\nfI0+9PGBaK3zx+tVgPFrGVIWN2ZjF78oXLA4ozBQxzygaoSoE8AFbhDlRZPl\nTVvF\r\n=I63d\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAh/LpSXgsTwI77pq5vQsZWPe4nFqeYt7ugWWXAnDPZqAiEA0mL12btEI7lVHOUEw4XHQW71l+ZdS/SeoTRHcpLllQs="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.1_1618505377704_0.8411453974836796"},"_hasShrinkwrap":false},"1.3.2":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.2","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"195a7fd44880fe4fe92be1e344b43f5026f4b6cb","_id":"capacitor-set-version@1.3.2","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-e7y6/i2Up6u5z9u6cE3Pi9gi5Gu8ioZjgAdXlGwvWcnMiwGyDuM/aiYaqHT/pLnVBJ/1IJN5v8idqPGxGopsTg==","shasum":"83d937587e4fbde68f086174ba3a0e1df86a40ea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.2.tgz","fileCount":12,"unpackedSize":20298,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeW7CCRA9TVsSAnZWagAAnFwP/2xGqNim4n/HLEk7gWTz\nPS87Y47icmYsK7zacZielPpVkJtUCHlbRidKG/mvMYjjyT8jR2o4J2VIGloE\nPeX/Ne2JaP7BgpmANlhmT9z6sbBdhZp1TofysnKw/7Pr8/3P4lwIljblENVJ\njqG9NTbUnCZ6oD6/Q00q/0eTo8kSZBqfTN0BkmgSeAc6xM/Tuop8Fgn2LjL8\nBanp2g2oecEWRBq4z7ZHxvtVAFy9u1cRBnwK/VdlOB1TdQhFmQB3qtg5LMo/\nrjwf+i+R5kyBIu+dFMT6/Mhn8ZBzwr9SH3Gk2wCq/9cawHZJ0IAlO6NvlMj1\nxSk+ElTi8dhAXtiNqM1HZ9pJ1L7Vhie1PZhw46pH1KKK6xts0KOIz4rk5gez\n9FnT9LxCXuuxVQbXwO9q6toYuYcZ5uWKxOlPxdep5WY9X86ORun5gnHq6TDy\npDhWHP094eNSHof6Dd/zPSjoU9P7zlgNoR+XrSJEhVG+70nHeJw1SoZ/Pj2t\n73ME/FgZ8rTFbaBUaVPlb/kWv0xJoeS6L7UprvexXKqGLemiur0hMO8ftaue\nRerjrbXUttGD/dXnNN/JCPb57wkBGXO4LFru4xthiUdXvuTpqIaJDnTFiGi8\nwzRahJfg8vW2xnZvQM5tye0jS0S3OCkYhknALkREtlbGWMgp0ICQfoiYF5hz\nfT/Z\r\n=mJex\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBxXXRz5tC2MFIIe/WOEcPLz6wHGnvPA/MafE7DVNgfgIgcg3Njqg5BF9Z7vmZdH3WLukZpCLLBcGCIFPLl3TyFq4="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.2_1618570946317_0.6900458686610962"},"_hasShrinkwrap":false},"1.3.3":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.3","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"61731988d7413893963c94e79121429d405ae14c","_id":"capacitor-set-version@1.3.3","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-yDopTqF1TP6NrhCPQDgcv0GJx/HKk6NKzuwU+qTiHPCspIfU0TnMJWFsTba2UdaOxKF+amfVgbJ1ZF9Rk5/tcg==","shasum":"e24038f63a53f5706b1c324d3aee840aa5c47a4a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.3.tgz","fileCount":12,"unpackedSize":20409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggq6qCRA9TVsSAnZWagAAgzMP/iCyLftwO16kyOLRwpr2\n6YHoPEi4zJIoHkZmxqg8eEGOFODJO+3nW+FDgAnAX2bFOfS2bLoxHKRq0atG\nMgQgd2tPTeXGQ+Iz6+yt9AFDR1TQ96WG9QvEqVXxgeUGe7b4RbhAfiPtikOx\nKpyQeVgPPSsL6N0AEBFPViX0LDwNaspmMuEPECKGdZNY9VsA6jThuJFg7c8b\nLI0QYgB130fjjXKUr8CMA61H4rq7ZxivHlQydiGitc/al9amwHCiuoj2GdYC\nscQJw/C/Rvk+WvKr7yRFA5GRV77QS7b5qNTGXC/V9yFAZq3VwlqDegopNYQG\nccjkBxS4E0koVOeR53jDKQdHfeb0SAt/xRlrJ+f8Uz3NO60mjpDH6KLS+BPW\nfMhclOteY0jr0SrGNPU80lYS0qOHpDMe9HKeY3+5GaBFtQwyfmmsnVxOna/i\nlGpfZBsjtZwKZW1vNUctR05ilxpvS7rHSWga9iHj7hHAJhqeGXSLeyf4xS5T\nHhIa50hKmjqtGDygK0WScGOtyW+fUuOQ+/yxyIQMt8bjQ5z1oABbGUMbJRkY\n/SfQtO94D4PNufa+GVVcBhGyNPKACLzvfNgZdKN41L8Bx+EUXEX76Rtg+S28\nlVO2gfILcaofWie6wbwAeLS2r9ZjZ8hBbKPpol0nSen/FJgMfpb6hN5yWzL1\nRvKU\r\n=A1CU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCjMo/RvOqT+l1vAoqv7LXflUfyIGFDuFt8Mr0/7BuppgIhAO+JsUhO6VvzvIOCx/yUP7RnwFfvRAfCUzwkXdVeHHCZ"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.3_1619177130135_0.0883276007936784"},"_hasShrinkwrap":false},"1.3.4":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.4","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"6bcaed904bbf540caf0ea3a59b1d9f9196e22cbf","_id":"capacitor-set-version@1.3.4","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-wjk6kfOwn4+Jby639PWAcwr+rL1f8QrlhR1ifRcbvYaOmqa0qQhSpGOm2Y8ePiJPNuhYt4fHfHWD3X+T4VwsBA==","shasum":"366fa9a59e5865c328eb1279a59fd20af1c6ccb6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.4.tgz","fileCount":12,"unpackedSize":20520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghquACRA9TVsSAnZWagAAZogQAKTgch5cAqsQJaFDKwHt\nE9FGEYSWjXcsAZPsKaSw3//pB7lXCkITlwzNdsaA5OSSugPkir0tNAbovdWM\nxWKY9IryXmHmGA5hLC3LSsEfSSoUJaBUDZuJ0PMceHWoGjEgSiwLRBtcnacW\nSWu+76qn27XgusGFrQndz8R6VAPWT2FnjUCS0y5DH7VH5y5G5blOvkz1hJk6\nCNIG8web4w5S2yvCnyP3Y3ww94PlRJHrRSAFBzqSuooKPAbmR2Nk3nErIRXR\nNH6m/bfkwk2fTJKp5Pa/25Ok3B7ntClU+z1ra3tmnQ3DKzCLfQNHqgX/DkWH\ndFAah4kTcWFR36IQLpixUnkGWOTsDoUHyTuIaZgoZ7YjmX2HRBaEpPcnitTF\nQuHnlHXGAM/9nL4BdmH0uHpYNjgwct5sLCqDP/RoxfVfMlz6z1DTpm4ofglH\nmvkrJYlpl0d8/E9Oc+UlzudZrIKxVRsE5Ye8Kur/ysEjHPC+BHHn3SVp0dur\nyEmin8TERCCkb+rTehekYPdS7E0Q5lBXhZ6RHJgNY5l+3tlLG7jJJKliUyv5\nzqgvuoPw7nwAlbGqyuOJQF8piSMtcWOOlMjImdkSvmR/yjSY67VfGQlBNxVZ\nTDZLwTIPNiUkIJ8KD9GpRa9ZGGswdY3bChVOy4gkKqPzcWhJcW5eziPlJREF\nRgI/\r\n=Dtv9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBre07kjzX7t73Hw0PgLzrF4oyDCwaz8NQIDhgS3BuxQIgUBRJDQ89NTukzUCB5VV55KKB3W0KQctdELboZVsNCBk="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.4_1619438464359_0.5926413972963891"},"_hasShrinkwrap":false},"1.3.5":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.5","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"5833240363e310920ba13b8885841970937a4974","_id":"capacitor-set-version@1.3.5","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-BXtGAk4I9SSM45WSeWNvJ2iLASn1beBXGbcxWCuqTTx8g4p/I5PslybS0VrLfJF/heCLISSUjenPkgC5+jT8Zw==","shasum":"ad3a35259dfcc4aca093546f83625bc7d7c3434f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.5.tgz","fileCount":12,"unpackedSize":20631,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghqylCRA9TVsSAnZWagAAcU8P/Ar6Nd8iV5WPVT9zxvb+\neLL0dYrKlYeYQiz6m90CYJs9vHc2/IsX7J65HcaZFY16/bAOnp5cjM8jY2RQ\nDiUOc072Uv85ePTCUudEzIj0gsDU7vv3vj7d/VdYqP5u2nyV9YtgtaSW2Gyd\nrmOoWo80zgYyNGl3dhxGL4BNC+5HJk4I3RtPjMGQYA2MGfbiOLXLNMOHAGtH\nBEbqtV76stzBOyMO4fK+x1mg5MaG3PL9mGPn6kpTRzIVdyjfH5cPtImQKa+w\nWPq//GcAxkQCATBtn/F9tkkfXdURDGXmBPnX679Ed6hjxJFtOqsZsx85iXt0\ndohH9FpYqCX6JnquvRfId3/fEJe8LafWwBsrw3uSzrIginUKfcBQ2dc5R1Dy\nLNCXPckGU98hml0pZMrefFozXs75z6byWLyBwMrVSkFUXUVrjUhsPdEbg8qE\niBZbkgE/if9scXfTcOtOR7mp8zKUbEG/YsImDbecS1eQBqmRP0lkcxMW/avk\nwpYNLTnikY+2LyhO2yyCEPFrFDtEIla14Ddk+Sqiyh3Ttv1XH52ggHGSU/bW\n4Khkoh/B0c4DpCWhi4qbgeeQwSZEDhUPZ/lhCJd+KdxI+vcrw9SdZ+jnQc60\nhHEQjgVUQkMKNzgRkpbNy9xvGIPFCvA3WfNcF6Nb7fhiLC4R2QpCm098oFFa\ndRU7\r\n=837q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF8xUj8xQZwfQd3CVIe8r2kNkEbwdycRf35rBTE44SuBAiEAnGDX1df5wfJZt84M3Q7k9HaLATlohkZPpMSmt2/Y938="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.5_1619438756974_0.41359122854762886"},"_hasShrinkwrap":false},"1.3.6":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.6","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^14.14.37","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"e8078555169828cab4d40258058a71217c4cfc43","_id":"capacitor-set-version@1.3.6","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-chPIP4gEzpLJzKWmmToWajOZJfnubokmNtAGl0DkSGavr4eZd43P3fZy8NPH33m+nuGSzcbWTwuMTF7V5TGnrQ==","shasum":"0aac8a908b4b41b867efe79e65b4645689a3a9b8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.6.tgz","fileCount":12,"unpackedSize":20742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgh/a8CRA9TVsSAnZWagAAu+UP/3KYBkHWkxN9xdrU4HSr\nKMk43MOJtJMJUCM4lInGRUtL2K0VJ+5l4iKj+XoM90rEvziJSsqAYqIkL7Yr\nxXBN16d2YW3pri7OQ9VggrAfgT9XcPi6lGpg4N8OngNPb9gZbZGyhwBnzXpP\nm7GimYnyuDyOQQ7hPBgKGx93dBlk7CkWCAtm9WJroMb9m1ZbUU1vnf6QTeeb\nLuurcrMK1Sf3MBH+eEZmeHNHrB0B2y2aWFm/TjkV4wRoX8ObdzLl8Hgc4XyE\njsbgcqY7BnQKBX963koNsjfEsRQvI8b0P7VHQWzIPBL91LczeQVcryjhFhJs\nRfsh1GQ1eKJBY5xjw+HEfhZHnX3wBi4fBnVeUuO9R8DLVGfHh51DO5PEVXDn\n0HFhbkICy+hGBnrKrHld2vL1ddWKa4djzcfSZCHdQfvT47Jcalg2Jekp8wvw\ntOYEN2C95OfJ1CzUdYh5TIvA87jzdvVgT9P6y8PKbTriTfoDMmD/rd7nRIv2\nkrzR0c/7S/dDjYGo5HT4m1KJF/F2oEX0eZBYSAStzuz0zG5RtiXmcCjnoFgk\nCm4X4Ruw+Zc28an74MXwVDuZgk3XNSpga54Cdrx1KzBB10o+kItoaRBG5D0c\nNhd/0n447/90fY0yigdMxcAefY6W/JWmq2RNXdlVkVYR7zzscO1EE+2TCHR+\n0XsA\r\n=8nN9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDNRiYayBPLWGoz+cT6pubVREy24pLK6kpqKGYXTDUE+AiEAiUHEcfEQvUmDj52PaHQqB4g25MobbAijL9EEtEfoyf4="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.6_1619523259523_0.5279903815195537"},"_hasShrinkwrap":false},"1.3.7":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.7","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"10ff2636c2bdaf231c21a1a3fa480fa601af0fa1","_id":"capacitor-set-version@1.3.7","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-BuA4JrUIJeLka8UFIwFQ+nv3anua0WCEVG9aN2tnrNULByTBle3HGYSylWtHb47z3NIvdpjUxbOrmphhriXNzA==","shasum":"c1b17511ec8df4cabaa3b920b9171caeef6f6fef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.7.tgz","fileCount":12,"unpackedSize":20851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgh/cbCRA9TVsSAnZWagAAtYYP/juekz9rgJpqD+x2+x4Z\n6vW5GFcI9vp9U8fPmLnTJQkgcetbjC6DhcZlppFvqTVicIVhYv1caURU5cCA\nyoWfoxMPixZt5VNIpsDhIUz4myewgq1PVvVIHwZFgYCc9s3cJU9SsV8Jt1V+\noFsI45O70bUgpfAs02J/Pa17BTNkj3HbhY/f8UDrf3nDW7c2LjOziAnnHLBS\nu0ML3So5bTELJoHFkLSdXKjVoprbSA9A1NbctsFCu83+v4BcatIB/TudKb/4\nRoFMzT+q9HsVTVFdHmI5c0/3dCIfyTZJEMSZR5hC+63vQfa1/Kpm8rWIv4OY\nAcLbJ2rsT3ahm5WpKfkNBJ+vUhos4gCYN/ptwgpTQcoA0i/6HSfRy6vdM6/q\nItzfCBEFAyw4NWtr11so1QcHsn5DJc2PfC7A+dXMiJCLiWpy5hw6z38PC2vG\nZaLm4FhFaxRSuobLUShN+A+q/Da7MCKSkC2PJgU196K2LDvQF+18ku10FmEs\nThSouyqf1r2cNuXUNEgFseKwxEoFQoQwgdqfSd6nxltx6ZsHfTNBG/AnEMGk\nbXWZ8D2yLiD9a07IVsw48R1AjeUipvH31D6B56WHoJawuj5oou8Lp4DDGrtr\nKouD5WjoruY9ozal/46UsXhBEwH9B7Tr0w2v6eGPdSFrOqhyWogneY/UBtqm\n3ZU0\r\n=dnzf\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCwsjFm/BoYy1h80m1L3xYo/XAwederzMHgaPy7vojx/wIgPVSx8EN7gT2BAXDwpGp19hgs4m0lmFhuEVQKhmPLBfc="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.7_1619523354672_0.9946332205944988"},"_hasShrinkwrap":false},"1.3.8":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.8","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"e984ae0c33f2c8b23437e84c549afea1a5d1ea72","_id":"capacitor-set-version@1.3.8","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-i5g1uBtkUjaUTtjM1cTlbXVq/hCfLbFPgmwj50MapS9L1uH+4d9gkYHuibdD79svtcxREyVidN2GcSinIXeiTw==","shasum":"3f48c58e2a10dd770e2fba3984308da9c1fc5df3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.8.tgz","fileCount":12,"unpackedSize":20962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgiUQICRA9TVsSAnZWagAA4eUP+wWl31cno2H3Yntono3p\nZnqPCovpNGIUJzrwxGwXhUsUGzZX/6tDjGbA4SGytjRYXHExV5u1UXfvJN1I\nga9feJaA/OmwkwseRUf6l57EjjwIoslDWUQvlNwX+1lAR3xZ+aJCjHzI2Iya\ngeaHSkg33uVydC0Tat2evXa9qeZZP1C9Ns+nWwdmDPgHEo5yR6Mt4ce4wuW4\naOzSy6L2hJDmMO01P6I4dmASJWtOnVAwCs3IJeFFwxm0+5rKyhrV529Rzv17\nwT3ZukCHD8+sNayjlP/044K6vZdzIBNQnwefnhqtfT7kxPi5vsbABcoWo63j\n6J5RtLvKi1rcGV5qJ2HCb2dx6BYreosIZ2f/oQGpAlogM4636TxU1K2Q2mqT\nK9IkA1HLHfSuhx0X/XHTkr/1OxguvuGajJIFcb3jtouEiHJ6JJvVf5IeZzlv\n7aJizY3apJIDHBXBPB6XCgznZvc/PITORslb9lzfb2qntI03bVJBNx73sMgL\n+zX3gGhkP2u4oJL3fkon/H/ssv4ImNn7AQCeFcpALaR9eTE5pBFPle30H+Qg\nnPOxCYLoH4Ls5Brypq6uSS4nihewQNI3oUAOQs7olDw5oU1jS/6g4g8HTQEi\nSesySXkUFMDJtH9ap2tcCVgeURIC1ILx43h2zwDyW1de+zNakaI0iv06eWxS\nRkZn\r\n=aVbc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFrni4I7UoJs/DnLVRCBV3D3xfLkxeXUgR5V3kwFmkoQIhAM5Qp7SoyF8XBBVQMFQKUS70gAMYq7MKBpuSEnjkC0uK"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.8_1619608584419_0.0960988004702037"},"_hasShrinkwrap":false},"1.3.9":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.9","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"7efb996a52e40d3ed9212adc916a9c01337685df","_id":"capacitor-set-version@1.3.9","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-3drVsiT275zfMdeopyQqGdu31ujTW+XRfbnfBi0CtFudRk3entK/OZdzKRVs7nj5Zjlh8fEHJ3xJU6MnzgC1CQ==","shasum":"10ab74b1bc3aedf10b29eac3f1c68d3c9b3882d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.9.tgz","fileCount":12,"unpackedSize":21073,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkth2CRA9TVsSAnZWagAASkUQAJYkLEl2SH/fGgxJ6iPX\nRClBTAlZUyHeA2uJlorMTCU0tC1+e4zc5N1GxHcfpUSbPT/fb4Sn/PU0qQ0n\nyPXvYCufitsTSNdcHT5H8PDH0Z0mJDGNmnED+SaGfF1RFO0KTBGCm0aoUX8b\nhW3I5QByRRmTV6xpXzerLyIXTgGWhXCca8MtT/wz0lC6d5wJVFFwbiZd1amB\n5uxqZD2V+VkfB9qxsgRQ/V79zv9AZBaOI59z4JmTid69iHb81BOzUK5uyVNE\nF54dN3WRthMWxrGoyjMX8JjODpGWW3QVAz3Hcl3bF8QyCA8MFxaakCuJGHbw\nbMtR7OC2PH2mvD5nLH4KDiCSmJ0ythvQjacW+Mof3+ysTsF2j6lNYLwNZUCb\n9BRw2RHEruBJmkPvPPapUA3HgUwZnDiyP9U7bsa2BBBUfCcJysGwXOgn/OZ/\nlnNB6oTNBbwCNZ+0Wfn7dOEFP3oY7ATwgVwppsAPt304ci10jN1RvSHwds/t\nL0QY+HRkF+pHhA500hBGDEtx5e0hR4RM8AaoQIZN2m4GtnJdD++SEE2OVoS6\n16+KlePjyTmxVtyWFMjOuZc4e0lrvaNKbeSvRaROwfiHAWY2zanYwMvsoMis\nQDwZRi3vvjgqieKd3MMjaWVWvtpSDxp+8J6d1LrE/R+/EOnvxqyH/byZc43m\nGfze\r\n=bWle\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCUctFu2LbZBzb6fSxB1Mr4tQTtzRrOKVHQZSukbk1BMwIgGuKqEPCza03I7tu2v8+9sQbnJKai2MVjN5jMSsy+pWs="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.9_1620236406112_0.35898706806669445"},"_hasShrinkwrap":false},"1.3.10":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.10","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"b34ed3517692b3378bc24d8bc3e4952022b956e9","_id":"capacitor-set-version@1.3.10","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-pA7kPFlQKTGvjHDtCqVa8RiAleGy3yA0RzH23uFTY9vbDRqAK5ZUsBQXS/1PuWyDTGJBmQCEoxjK7WNVX6CEZQ==","shasum":"c01083ceafd7ec7dbadcde77c9e35014b18d4888","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.10.tgz","fileCount":12,"unpackedSize":21187,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgktioCRA9TVsSAnZWagAArPoP/jD7Fs4R48bcmAW7oZaN\nHb1yWIXVemKZAya6P5C66nqD7LKC/Z7Vc4G43LeB2BM0Inf59kX3WsMPYkAd\nfokzH93DEZNHPLaFH+x3N0JQdEGasIy3ci16WWnJz1gHS4WCrj3U23NQ0X5O\nHn/uiK3+y9OLG7bgJP0op+viwOgrRmBNCNeJoUuOQWOsArgC71cUR+mAdsBw\n84wnDlr2DJBEmwHL5CviceDX5MwEoF9Wrxs8XbSaUZ6n72fcquLWUgB8+imA\njkHyNgm40ZSLRyiz5mRNQ4vXgPyF0h1DWfKfsi4Ul9010cuScYLdLJV1zMhq\nrnZJjBAaNcrbEB005/yhZAlF08QhStlqMhWJNEJU13v0fPk//uW9nMZrcJwS\nb7An7wptqvA1PkJotwuOKUT7dRrkJs/Tlhy8oWq21jWKAS2ZjY0mZ+k1Z3k/\nBZ+2Evk0dbk6O+JS0noKkvoFwBujGqKLe3oSzCjHbZeGyvt4F3Nv7wIdtvB0\nCFWjMXQdZ1SD2B1+zbXGCt5ncG0xdfu8/J5YmzVUC+nUyFCIsLW3cGOIgslR\niP9ddLtmpg0cOgDS7uH9KhvcI8sJQq2gT1axLRBdwcLtZqCLlN+zZC6m8f2g\nGaVRrI/mU5lf4cDUdFUeHF14o49OUS497dOIxYCGBNJ4NBSurd4Qcvyi0TlD\nb2l9\r\n=RX4m\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwOIVjDyzMcP9v1tIh5qfBLJSu1EoHoG4MI85E5QWW8wIgLeP2+wItk6yU9QahEMWxvQZZHpYVeqy8f5A5j6veXz4="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.10_1620236456321_0.23792425630734826"},"_hasShrinkwrap":false},"1.3.11":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.11","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"aab1285990d96d69684de03e86747feea0456b27","_id":"capacitor-set-version@1.3.11","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-W3ICk7zjIRmdRHMtfN2L6afww16SmRtCc4+dE0pkU1c5UnztdEToQgEecekpvy6BqqfepW0GDvOBZhMNHqJvQg==","shasum":"f9aa5760462fc148518594905d9eebc36602b51d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.11.tgz","fileCount":12,"unpackedSize":21301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgktk4CRA9TVsSAnZWagAAUSsP/0d8YT6J8fp4Mr2j18md\n70+g6l3OPaZLtpG2JQktcAEnkUSMIIzGSPujEVf8qwwQp6ttDJ2CgtB6aiV+\nB/emXkQIw8Rx/IlXDd/bx01Nfmayw2RombYYIAdpaHWOZw2Q6y2iNFC5npQN\nNH+Y+/ZDou3o0oWQQynI95CZo+keZdN3PVXXu7mF0ftUf2z8+zt98/WAMz+P\nKuOPvM30yF8xGwQeROLQAJx6W5EG5XKB6nlK50dlqn6czhMmUda2j52A7f6H\nTOpLJZuGFnngoqdHUpEBfLuB75lf/ssI3AGBcJmohRbSeMVU0TGBDK3ulLgd\n4CD8m2pN1JrNMTprzImrJfp9SkFIbGGyShX7JJs5kY3so0svlimOP1x1URS/\n914qwXiHE9D0FvGWv7jQTAZu9Kz5D2lML2G81EZUyWTwCvdhpQAPjXEUdUIH\ng6ibuIhyA+w7tQiyk65Q8jUPXtsppTMirXxOVuq/PA7sO1hO0+0L+vPhk6bv\nVCIE5kcsD/aSOFSmslLcg82y4NgGfcl5xjbwbWolZdmuPloJj4sQiX5XxBRO\naZMklpCecVNkua7MoW0uxt++/nuQROW/SFou9rU3NhnLZPQXQeFmmuGsWWpE\nX/KOlX7wL2P6Tg7oBdU13rmojxpLSr+wg18zYhpAuN8dfalDaYoZ/7ox+jun\n8jat\r\n=i7QC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIZhggbbcpXFnNFCt70QONrP6jTpcVOqdIkiLkdtKSiQIhAIfLsFJpHkOlybEBXicu66VfWOP28NSIwqHQZJUM7HEd"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.11_1620236599541_0.9553650364446686"},"_hasShrinkwrap":false},"1.3.12":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.12","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"833681c013932806ff7ce093dfddd86d9128c12f","_id":"capacitor-set-version@1.3.12","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-liU0K61MMXcDYoWKpLpgSbp5HsTcPwC2FHHSyG/qiUuyD/dEd6P2gMDUsV2UdfdB0iTt1h8p+mig0hJ2DYKEgg==","shasum":"b162c3c0bf74a52135214d3eb9daf3b1c9408f33","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.12.tgz","fileCount":12,"unpackedSize":21415,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgktmACRA9TVsSAnZWagAA3WsQAJMOH6zeSrPuhDHH/P12\nU9g57a6JhqEGN7jEJ6Ezz7OmLVYn5ymWVSiGShXovStYPnqrWG10Yv1zunuJ\nNnqPcT5BHyJt2Xe5Jt8+BAav3cLOVYzleSufTRVfZDSnLhk8zaedpQ/yfQNW\nDUQWwr1V/S+WXhktceBvoH3gvR9c8pCB6IGcip2bj29Gax/IQL/5LGPS9Ea4\ns95/FY50JRk3Zi6x9mMhMKbOQui86WP4msfv5Y6hND+eJ26KnSb4ccU/38jb\nKrLXE8/gx4i4+WHo8t3/miyDI7Ej5Y37B00XiYRuPjs9aDrDeIVf1ZePxvZC\nuQzORufZavKdXK32VlQajGfTPpQaue5H6+H+sbY7DtwsUX79laojKocBmNBx\nY6obu3CWOZqJqnOpnwwdhKZ/LjRIGsXClVFLOZ2rqScrd5UL5ckhYpklXKwr\n1lvgWsokqTF64ISobD9mGrcW3NT5iEu90KxqeaUH+MDgeo0vtjpnahEMP6jx\nbKBVkez1c/AFH7xQTJZvLACDmJz/h1k19ivlWd6KLU8gZM9iYoNs3LJ9BWX+\nts3iz0NNUkfdVZSBMW3BtWc8RzLs8Ywf8tkYgYANTE561d1Yr2qXtx4jpyMr\n5E6bbDLmchfy9AyHcC8zSPd5E7VuvKHiJitGnjPtLibPvav1TxIV4vnGNwbp\nIgNI\r\n=tV+c\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDoGVw0RwxZnzKu8Zi6Jl8fz7zp+NHONK/4p1MZ6VqscQIgO+ZJYfr01fdxADyNyZ0vHxk+rUXlshbMcJY1qvsKL2c="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.12_1620236672012_0.4590792984871126"},"_hasShrinkwrap":false},"1.3.13":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.13","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"4c54d6991e038478c423477e1daa9f74b9540139","_id":"capacitor-set-version@1.3.13","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-ccOZg4GZ56YrfbJLKTlNEbm2bcyIGLjuIWjLULkjwErUU3a9PfvDDAHlmPwdr+v4+zXrmJ8Qjgn2SD9qUHv2jw==","shasum":"a41cc7ac36e1a7845bcfd438411aab0cabb168f2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.13.tgz","fileCount":12,"unpackedSize":21529,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmRtNCRA9TVsSAnZWagAAjPoP/196yzuj+jJ/rPz8L/v0\nrCJW3zktEpp/SATdDTnPDhAVJZFNFpHih8H/arf+vYz5CHgONz2qHwTt9dV4\nlXUPslPiORG88uo6oZ5bCPWod87ywiOWwHRtbCYqha/fOG+/89v1DgzqGv7R\nYYkFB5iP9pLuXJoiulPYdimiNau+CG5laDQ1iEr4ZfL2TpFsNiumJxTBiM8M\nOUp5S07ngR9REcfTDaPVI3XJNHpBiXKI3kWRgeu8e7C2kMD586OTUGdnyehl\nxW9v7go18FMkmKrSI1LzuklW/XmmJPbzEbtE2X7hmRzIgDV23TvIl5YIj7Zv\n+BW+KhNf5fG24Onwetrd+5XhKyno0mTRwK/IaldIDPo2arDphICXdqOjsKc+\nDgq35Y1wiSiwmCfp+LYl6oYJZrj23SbmUEdcSTaaf9MdC4bAXu8o795bwWP/\nXCB4Fyc+nzBPseRYrRAEEyULJBaYzMMlDlLVJ0x/Ga0SlJaRwRnPsnsuBX/Z\nNloXZoxqmbFbRaKI/7TNXP61UCrLkz0Z+DVejKPYJumpjjdMdUAMu/dbYqEK\nvMSB+lYtMcIEa5IupBNMBtQskwoXkM/9vErJSsZmIxMUX16t8ijmOkRJVDAZ\nJQrRNCwV2ZAIp16On7x6HISU7m9xv5EOeLcTsjNnWyzbabf4SNdBNKui3htG\ngx50\r\n=+OxV\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBN8gru5CnaOO5M5R5dSHarQIt1PzVayNWLLS7fCtJmbAiEA75GJpu/8g3vJrC8Wrn50chc5+whrsgZCMka5Qiy1e9Q="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.13_1620646733402_0.7480275737751878"},"_hasShrinkwrap":false},"1.3.14":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.14","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"94e8e295090710f7867914ea5468a4f9451bde36","_id":"capacitor-set-version@1.3.14","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-51c8ZaFN5OEPbJTN4YTJjhHvC4SnZ5Nz2NbQmGr+KwSWga7Ltz1zHbQYfpGBRgl2khUrE1cZ3+d+M95PmAFRTQ==","shasum":"096c2cf4773e059052b3c0a5e15384f119232bc0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.14.tgz","fileCount":12,"unpackedSize":21643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmRt1CRA9TVsSAnZWagAAI80P/1PSNfiIqYCsmy+zmHQo\nnxXamyR+xEB2BlcyO7wPPxswIIKH4O14oJIpTrnxEFZNHohY4HO6K/9Q/cfH\n36XzAJ91mJ+SQyuAvHuwosayrSLwzBpulNjohrtWgDJOhuW2wbPasZBznSN5\nfYKhJWwu+8kSzYR7ECNaV4KtNmiJ54o127il52rkBhAIYvwzxLCBpZIaJ7qR\n8NZfFNK0RfDx32BBAgc7y+VAejBlsKK1KJgtg9AuO3u4RuPbOh8a4lUBGc9m\nrnQZL4QHdR30h8LP3tirjRRIv5fPfO/xSYC7DDbf1L2opHojkEhaTZy5+sN1\nU03MUArk0YjALH2ZccMA6i8udt9U9k6vjNQa8dR+BU+mROzFCdexOhK4Ao6Y\n+RV4lpxIIeetMJNqYF+uwuVS9NTjjLq5UtVT0LdLFiBAqhaUwI7h/QNxzHc5\nKUHPKvhov4No4kLS32DgFKEauFYZWQneIdZMuZXta4NAl1LJcnyiC1tCZaAy\naxTK/fu4seJgQK8bdPfgmAfk1mRfGLB3AjYA6utzCNhA57+lc2TkeGSCES/v\n6mVNuVEjISDWqNv0QxyW3HLtQYwBDBLzuvAmgBtdD3EQe2I6cgGFaZKM/pQk\n+D7Umf9u6fYY745ccQPDf4mvpuCP2wa7xLYWm61q2PiHH3VDLG9F65wzJtE3\naDUu\r\n=d4ED\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID0k9AKuODthMsLDb8d5PCc4ZbD2xTtyh+AIWuTS62X+AiARz0eQNRteyPPHUrFAhofvgjyVBeqZ4z4M3QdBJC521Q=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.14_1620646772464_0.10546026796391672"},"_hasShrinkwrap":false},"1.3.15":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.15","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"7cf8f28de751503a9639256127ec997aebc78192","_id":"capacitor-set-version@1.3.15","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-XK0r+aAMCMQPPGthCD7YUNdGDrky2CbHaQNV44hKROeCtKzcHLxLPWv7pNm1beMlaLuONmhrIePRFXr6qI8aAA==","shasum":"1b11606748bbd435a284da8554cfe8943a9d7f63","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.15.tgz","fileCount":12,"unpackedSize":21757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmRx6CRA9TVsSAnZWagAAJOkP/3duydYMaHPlZNEljb1Y\nfOVL5YydwalEsJaiEIThlG49xpV4R4FkrcU3IQRRkmPy8EAAG99Pw0wiJFy+\nTmjwDAsmzvoqdsqCNdKun5CXGWxIInbtRcKivWOB04jYcXfx2IL2anWLKuIv\nGG3bUKgv3o62SF2fC8AtHbGAQpoVwWGcALYF0pkRvbkxkv/f9YTgYc5xXciy\n50ePEYcY9cyitcMg5eqJB54fFVH37TdzE5IVWuEeq3pApPySdGZ8hAGrJVsE\nnoMDdRx/uDY2hHihMIZyJcLmSx6fIj1qhODk7d6omX9lXUThKEAxxo/ALc69\nPjrmj6grKRHckAh+Abuoa4mXgV03KH2ceF2lA86GGyESOblUa6WPWhoDG9RF\n4XyjV47Earqj5K22VTpW7D15dOpeowKq2NU0ZZXp9+ynJSgpthpRiB7edGV/\nNFSmgrTKob9i4Gwxqjl0z44HMEdsjj5yydeiUkZKLywSVFylccO30NYrKz5S\n+UoMZ92p7d3iCy84wcqsm/BClbpqUgXPS4I0mo9WdqCsx9zIlx6eyESl1QIj\nZjL5PxmGgmwdSHeiBQ8R0IDxtS/L5EaaKriCpEbRkE/GbtbBvY5EnuOI7xxx\nxScOMePPoztJeT4Fs8VhAbaTx96RKMfOqUoDpym1A+RHK/ysBv6kLUV9C3or\nn12K\r\n=5eNz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAOoaSK19ynrbK7fMg6FTQKE7WjlwpE7LfYMtWNZgYe2AiAm2iJ6s8XblqCeF4nnjkXD516d6Ge+5zyuE39xMrUA4g=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.15_1620647034117_0.2616699134654883"},"_hasShrinkwrap":false},"1.3.16":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.16","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"da3cade3d5ffb882b269efe8b2961216026b5222","_id":"capacitor-set-version@1.3.16","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-qYvjRvYeIG4xXoJc+vZ1BacmRXarcj8xe5NjLCAoLER2LT5WKSYQSnvN/gzcI/aOVi11vQ0FObg1Cwvd7+53dg==","shasum":"8cb1ef5bd58d8761d8a6b30e4fba39e37f2b9131","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.16.tgz","fileCount":12,"unpackedSize":21871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmRyqCRA9TVsSAnZWagAAbqgP/00NCT7QSXaTN3actxEC\n5S5xJxDgBKGacKZlO3FkFtqh6uuTLS4xVK4s+jrphTkJpH3WntMQqMoO5iYU\nQeHU92TD7N6LY8hUNuFF0coSoknQnAgbRzQsGoyFKCZI5a2bhZOD+38j/oIM\nh5HZnOLmyNctxeczD/sd/+JXl8d16e9gjP2AtRCrmENylaJpngSJybZvAI7L\nCy1ib8+OqBgAimdDnvX159ljeYLMd7UXsazmc7/MrEYfL8hv36x46ecPXmgS\nL2GCBxbjBURt+m6b234UuR2Am8+SB3wLNoO49QKb2kljif9n8oME5frDDQMf\nJ0okOhdRr5QGr0h+QIcjEheGyCxGNuUfRVJA2qKxSwyK/M0gxCVOPFs14q6K\nQkUKV7Rx+vvmDxch1Keayi6XpKKJWtUoolhuO8vYt1TBV4YFSjwEGzJBEcHI\n3JRC6gY978Nk2QXprFDaIxzvlmSJBda8GrNDhGJGiUgukC9qjodd7JaVrBAB\nYZekhB8EqFJJ0UocH5V4/ZBWFN9neTs386hAhOmTBRuMlYCXoKJ84E8h3GrF\n6FYymsuSmYBoAv5HeU0GgLoJuMN6yNHJfvjB56L+8NO+NYco8C7XgaTI2Yuf\nZyn1c90gqPZ785jB70tnwtlbN5QIvSd95vTwb1cjMQlgDeKFU6Rcm/gAiJIQ\nBJhk\r\n=mNAN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDetvr6ZWYbq7xKgzD3jnpuV39V27aKyDdC2s5/IPl0nQIhAJ+eoR8mqFx3Fh9hpxEw2ioEUKBJVL72R/XCZFRdhoum"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.16_1620647082402_0.4378206289329585"},"_hasShrinkwrap":false},"1.3.17":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.17","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"bce4a139d25e0de022a99868a730264a7abec0d0","_id":"capacitor-set-version@1.3.17","_nodeVersion":"14.16.1","_npmVersion":"7.9.0","dist":{"integrity":"sha512-fnZIGQNwCn7QS5GRXfVWN4E//ydyT4ZKN/zRlaXkiQVMFQtePc0J0tlceJ+pz8kr9rGvwMyEUwYSJtNmVjMZxg==","shasum":"0da9f513f1ff74b731611ca0dd3dfa0435ad80e3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.17.tgz","fileCount":12,"unpackedSize":21985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmlgCCRA9TVsSAnZWagAA/b0P/0yygCdkx9pWQZ4n48BI\nFtt/ARPfz3HBa5iSTeSjce1Pw0LpTt0h5ip24idrO8/STOoq2oALAkNZa1QD\npmNMgtdcv/DoxZr32WmaZy0dwwtLnQWn7VjA2Io0M2ubm7T+613tMYw5R343\npmKQSbRoa2de7+FR2XHyHEp94ueqE//kaMDjBPI4tSyXQ/XGLvBnwrIS2L4a\nNPm9V3vB4BDk7wAUGkxWcsMsKRKFDr1rq3oJu4D2YeRHTzWznb8YfIeutx3e\n54QEduL3mSxgwGodHOm2h9twBYu7LNAQkS+j6YlPEkfW1BRmT6nUXR+BZfNi\nqRI1+4dC84AWb11PrI8bN6NBpFsCG+Xm2Ml9lQqq7SOIIgfHUC5gtTdyaJgn\nQX4+HlaBeMfKV2TsQQZJF+Ppks/QKhx5DwCp+dix89ADS/v42AP3tfpn5h8F\nsr3bdQB+8MQ+DnEiYqZmrkDm+cjDgBYsA2IT9msvr/LBVJFG0dzttaG0xEb4\nBeezpQxz1YNTOr0TSRoeF4xUnAwIlJZChg+oJ1lwYq4KgpOCXSNNVMLHgeWg\nJD/UNjCx6fB8y/JW22TMt8WOTcM3f5E0ZY5B6g0/LL+SLWRPOj7kvmLP+kmj\ng3hQvUQqIQlSS2JK6Kks0ExSmZe1QtLPUbT0IFE1V9nQfjXpT6kG2/p9JaZM\nzGLX\r\n=hhMM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEsvxPoKLcMdF1bqxsu92C0SnQvq0LJMsqVmFCA1Z3vpAiB7D32a66PEY5BdoOGFTiHxdbXunh3qZBfOozal8MJS/g=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.17_1620727810292_0.20753232018633372"},"_hasShrinkwrap":false},"1.3.18":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.18","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"32fba257825e1a91f880bb9379fec6bacf38ae06","_id":"capacitor-set-version@1.3.18","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"integrity":"sha512-DEpu3Uegvj0M0oe+rW4UmImu0MrMmTvku2pKllwyPQEPYkmjJgEUdXAPcl7JLFf0yYmHICXOLA0DhRT9D8IGMg==","shasum":"a7ccd4de01349708130ac0e9c92e2335a0f1a4bc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.18.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnk7DCRA9TVsSAnZWagAAMeEP/RjPE9whqJC7NJMEIqfk\nFqhaSJp0Lvqp1+p76XgsTB/A1wGRRv1O5S/1BpeYs4+tN6WeLuABoZZcmoqA\naVbCk4bBVPwJnIkR3K+3H4E8dvCUUvhanw29kS9Atp24/LcyGNz5M8piDJ61\nheBzLHKX02/4k0ZIh/ejX2Il7XQAsqtO1BOYBdB66MlsikUGaMahBuzHJlvq\nzLARn6e7F2XZIt7VQbsjvP8l473rhgrAqhgOjL2KtzRZ3IV0raXGxdviJ4cV\nWfE1RlPQq2izOtnNcW6G9x9Exqochap19xrlXd7ejDXIDIubPdlvApdEo4si\n4dnNLmZJWvO45C1bT+j8o9UblwBNojfwhme3nRlXqvNo93B0ozNB0bx1dBuX\nPRuflQ2P11/mSd/UI5AkDzU9jeNLbeSaCzw6HM6VFMKv7eWAI9m1ZU2KEgB2\nWSTUX9BBuIFkPBD0tV3x9z0PKIvz5C657VY9I35Ik6P6FB6SRZhsSuOHUq5i\n3cjXUAcNJuq8TmXssRGOZKKvgCdcLK53cC8NKEuq+bHgsve5CjvMYDWlmEvm\nnhxZJy3/oIE6PWfJsrTTXLG7dtR9Z1VhGth3EQ0gKv4P1tzTUJTzZAwoHGDU\n+qLl3XeB2vvINxcwFK5ukoLqQTHwkIixbZUQ7YtT+F56dti2GQv7zyAM4+Bz\naDmV\r\n=bcQM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFs1nnOi6FIoDkruEnkA6Tq+YPMQgzCM/NZI9bnmNqcGAiBQO66fZ+nbChZWYh6cM8mfWGXjb2FLWOhab65bzj0hwg=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.18_1620987587377_0.8078512802542315"},"_hasShrinkwrap":false},"1.3.19":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.19","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"a46ec859d91f6655c27ffa1d0b01d914cd916085","_id":"capacitor-set-version@1.3.19","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"integrity":"sha512-92WvMhtrlTMYrQBZTjeHCrPN5uK6TclH0VfDzT2vC+y7qWXf3GEul6oio6z/VUDCRmcw8NSNmqdzdSthyOUfxw==","shasum":"810103ac3ce9428b636c375a2df14a66cb910d58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.19.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgolKuCRA9TVsSAnZWagAApS0P/0WqIfuvr+hMNrSI603J\nYUQVjfX+aQz41YIGalhPu/rC+2+cgwTvB6V+HlZuAgsl9C738pkB4ZsBmDnz\nGaZ1XgONW8s//JOlaFF0oK0DHM8en8QAvuNEZ2GwSPo2E5oymCiCBg/ONJGO\n2jGBQFAuNzqOQb/vBgJdT13E3r6o5K5cC9Vil+1zbqdfo3KZBdIWWpFbLcUm\nYNhWU56vvMw6VIo7hY+eI2B+XiEgxMdkus96eLhTdXXNZHuYTJ53bqN/ynYn\nO74TZALAlemZw+TamPmD397mmVxpiSSNL6VYcFU4fU+HGlx5xdO6gOpi/Z6w\nSVfCGpZ42ehOjTGAl9gt4pIlF6InD8YOSexy0V+V81ozz3D4CTX1r9JO8bKj\nqQSlH32qMkaFJoueaH894bb+Y7z1/3LTuSwC0YHTJcO5i9sMhXPfrZ1pldel\npWs30GpNIdDVnNsvBX9NwZwr8iPz1IqUxyO6Cds4khb/1jz5e53/uqCJhiRR\ndjRol8k6dKbNrk9aVlrkhs69pTUkYi3X0e4U6u+2xP4W2aOpTirhAePHEBoC\nCIUUWRKd+QZUD5JGo5JUoY0njmXTHThu+O1HKDR4dNplAewD8kfabSE/V0a1\nB+QUSDMLb7E78L2SHuYTpeUKSnGXyAxT96/uu+phUUviY62EzeDzeUIC2kDf\nFuec\r\n=GYM9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHfCDSsEdFj013h5ebwyxw1y5BnAEzADDFWaXsmaEYM7AiEA0f/Gl8S8IHNyzZ+WiC+n4RsgeA2CPd/g36Io2iQOTxo="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.19_1621250733634_0.3557548259484804"},"_hasShrinkwrap":false},"1.3.20":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.20","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"0274e38c9509fcc69189d5e0f0b3e31b5cffe436","_id":"capacitor-set-version@1.3.20","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"integrity":"sha512-6+9L+RXdeexdxLwg7C36h9afLnb9qHJELWYWFPRjsoCkx8BI2f2uh0qrTd7fYJiT4d16QhWI6xWvwdATdg7mQw==","shasum":"94590f88908f3557459bb55cbd10c6b19d82c09d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.20.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgo51wCRA9TVsSAnZWagAALzsP/RCoPSMVzaqdwoIZAhoR\nvuReRFzh5+YQs3n+TznhTdJ1Q1iy7rqkZ1xNUZx8jp5zgCHkb62t7GDLeHbK\nT/UXlfhUbGq63PCL86EfGqzQHluxrrcyWSWTnutHAsIQClRgbkUyrVsMZ05v\nwienEhH0pDjhgF6iVcvx24MGyXzhlQkpYm2zJQClMgUdRWnGsFSIQ85e0PvS\nVo7VHtN2Wb65QgbCKfVSFZfwJyBRY32JIk9Vi38KMIyASY8YKyFd7hBYfoTY\nEfXDoBHVjKJ1jlygKhE6h7Ln8C6Hn/u/MZzu26n6Bu3G6g976qUN5bjiA1kT\nX9Onx59JNf3vhQnwodeRKF1qikWtFCB9hY8F221ETERiGVKDZxPUNp65wJYJ\nihx24IxuMQBmuJNV8V5fJ1GNMhGEp6CufbBnN/McpBXFyt/UaZDZRQq0hw2S\nbY75f4vI3cBeTqwVFrhamSi/k5Ml8E3YYHLE8d9YWkVmmm6xVz8lqqEhTdtx\n+/T4aoo7QePxfi//2gMmqHW2kQ07+Vx/nD9+OdEYqTnNsj/yok4J5JBoDeI0\naMg+lnZEqczkHX+DcerpmRtrO/AAb8cJ/Bp/sFuU0D9wpKCxe15Sqg4GVDiZ\nM9ewiwoqWX84f4By2iXXqtwuQ6JKrXZ5qcvJThmfddKjGwy0Vfumw/J2gxXr\nNM/O\r\n=IIJH\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDafs1o8v3/IBp9WzYuHoZKFVLCu9zT3Bw2lAYSa6cn8QIhAI2ucDa9n1pkQvzclsfBUXmjUyji8cBWVfPUGIZnmTBC"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.20_1621335407751_0.8580385633168324"},"_hasShrinkwrap":false},"1.3.21":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.21","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^4.13.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^9.1.1","typescript":"^4.2.4"},"gitHead":"f269d839150674868deb7104efd7e99751af8d84","_id":"capacitor-set-version@1.3.21","_nodeVersion":"14.16.1","_npmVersion":"7.12.1","dist":{"integrity":"sha512-ub0MAFv8i0Ujmo8lP1lmsafi1PGQp0BS34Ne9FEuG8xpwo20A7UFojsK6huNDh8MpImft5djGFU0OWeiqvAzeg==","shasum":"7b529f740f48c60f3141b6eff6ce0adb99b0d000","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.21.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgphLqCRA9TVsSAnZWagAAWN8P/1hcd4Qta+vwUspH3DrN\nGCvRYfB4TVTAzrgfOBA/Nu2zM9cOLI1oUOYVG/ZvJhgwGt9G3Rsq2rLpBHm/\nQm2rYW0dB+jKqfRkEAzIY3OWiTwQaeOeH013Tq6ihTUtZvUBOCZ6rhooLz1o\n7X0tlk1vqpvj2jRDeAZI4KQPSn+BevuRzTIKygTNUQnVDgo7mjtVoYZ0QuOt\nYBSaS1ti3lAYIPuuh6bzzv1doEvVHUAPDrPhWE3mrpASRaofKb/v6uiT0O+S\nR+EWW2upfw4u+lcyQwKMC6xsrHWkRBxEdw0rXGhg50xxdvAESlBSOM7y8s4+\n11nHWjp5PVItCg2gT0s4YAEn93CUOzUdm7GW/tncw5OGQ7iVat2whOVeQo/j\nnmcNhCHnjUZSCIE6k2JPJRbYvn1uxrtOIG0SQIxWT0hRbmBB1uYPfucpr3NL\n/JURqMagVWLcw7TMfUeus4C1RoJ9BlbEo452UQKKuPBQOvZT4xrithuW9MSP\nTYuuyNo83AvEpIwMucU1Ox+7sDyrJMqjf5hwMGRDgOx7hRHjYgsfuKodNEd3\nb/mjGwZiOfPBARgoWJUef44gV+NKCsDFxmsLkQfWotagCqvvbG5TbIzp25yW\nRH3UfR+ZzT1Ybek2xcIz+h6dO0AlL9PkXMaZJdT9swjmCHL9SMcJetxAUPvI\nS2rq\r\n=vKV2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB0a+701e8H9Ix1gFcYiZ/fmHomlJt/kP4hhfCyN62wjAiBX5ZhztpM9oDMrvg8dOBc3E11R6Po5uUirPzIEbWj7dQ=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.21_1621496553471_0.17699376925783383"},"_hasShrinkwrap":false},"1.3.22":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.22","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"8bc14d62c2e642a8a050a007640e4b31e4735186","_id":"capacitor-set-version@1.3.22","_nodeVersion":"14.17.0","_npmVersion":"7.12.1","dist":{"integrity":"sha512-JLhRCg+FBB0RXc/2lr90idzT/RupQvLMeGX+lrLI+McpHdm8hw6hd4CbSx/E5SZwMl9qTFpeW9J49u5nXnm/zA==","shasum":"753b864bbbc407337aff1acef151ae8689cdf66a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.22.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq42eCRA9TVsSAnZWagAAFGsP/A1UUUy9Z834Ey8zpNF2\nQXy0GnpvseYZ++uZ444zmBvRdGpDrxDRF0KVxiHC+DL5qPYG+aNp221Kdtqy\nBCtGTj0EmRZpHQ9II9lcZM5dvilOn2VUSLCrY8BQWpMeOXHPyPdVRnq/LfB0\ntEEnzdo80k9IahhwwQCuo0XIspYUDe35saiFlBBgl4o9Fy18Et9vFX+ndVR6\n1P8vRypaHiSJfXtRXO/dZswwVroDeUkQrtvbSjWr8B5gRJJOYnLDlkRzLbDa\n0Pz4mA4M7B6w9ezTKrPc/JdAf2aFkhsSaZtPhjBskJNE3vUMgWMalj2JtOwd\nr4WIyMufjFtG1VA1201yrduRIFx9AK6cGf1m4zznZwnXVjM8vNqNemAcwsVp\nmdDCU51t0vAzSbS3Wqf4Y3jAj/DlJ0Kp500pwWPo2LD/p2ybaeO8JrYvvwyE\nD6RXnCyCdh2/8bv906ct+wBPA9CV0QEU/m9UO38KDmIakZNg7flOjNXOXbSY\nlf8DQxBAoPL14sDKuI+joWmRs19lmyML2yVOQuXRvx+IIFves4WQIX5FnAOb\ns8cxooGoheetQ7eCFjqX7TLhCciKtuD2RRwLMyvQTiHeG0PY/tLwmdGn7djL\nO1rjXV48fF35TcYOpGgB35il1GreBiJj8O7hZvuVDYYS38jsrOw+CsJemNNB\nKzI/\r\n=U/gM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB38UG87c/eVK4eH6Fc4GUHIr7JoghBGjW6/SNre7QOsAiEA3intywhKog81VmGvZW23IxI0mQr02tLoofp8mpyO6/A="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.22_1621855646211_0.8693454018226403"},"_hasShrinkwrap":false},"1.3.23":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.23","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"b413850da2f998255e6989679393d438b236ff03","_id":"capacitor-set-version@1.3.23","_nodeVersion":"14.17.0","_npmVersion":"7.12.1","dist":{"integrity":"sha512-D7jGEzwE6U1emaXHiFofNKDqO1MQhFwRjxYx9Jjwb8LMyiEv72PnSZYMyKDZ7H1Zrzmu+ImgUmve+5NrujKB7w==","shasum":"ddb802c35a00773462dc5d46dcee739d840c5ffa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.23.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgr4VZCRA9TVsSAnZWagAAB+MP/iYIDq0qVBeBWaxWZF1k\nCyhPzBPoBET33tGQhMAZCMCHA3NC7+di0NzFNi+h1GXIrRmgVLOoi3qQwsA6\naJIS+3oLZsVdAUAMLbk3nOdCkqFgk0OzdGC1eBA0dG+8p4BJykaPwGwFr+Tz\nkftpGLgPIs6PR3pWr01dpvQkovPpYyHSYQhONRclgOGX2qhpIecU+aRWzh1D\n9dClP86pvaSjiID3NGxvI06M/mmY792UGd7XfKTYdxEpDFGCjUxXz9QxH04h\n7Wi/w+M42PIL5nB4qXU990sl6GRcV0mmkBT8LYCxbvWUQYZh0OPtDQ0Kz+d9\nUnHhvurUYdnbNWDoYOMPxMBhMSMZacH6lCsM8K5TX+PGeqcKveoukqz4ysGo\nYGt1RIBnU581Cv52Zy6l9AtZg8JzdNNGfkr3yY8gauRg1uLVIbiTdy8jOYrB\neQ/JNKjnncwydhKxDKdM9o7/Q2vPUQM2OaCRfag+S7pXraWZfZusu3hXSywD\nggmeVZcyvp9paHAHnOTgiNDFG4oI5THiWVt5mXFK0X5Tha7CbOyqqHDAoAtd\naDwn7i7dON+wx0M7xlzLK9ICYimCGHmRJJ4WhFi1tjqwL6qyY3fzMJgFd50F\nM0IIQJk2JRY62tIFi1UO25k0ig5YKlwoP3LxvTPFxC/YHoKHQ/xjSk0Tf3cc\nR+hD\r\n=fpTz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH7uCrfKGRrUmsC5FPu6KCdceF6MTQyQSmekTGS559lAAiEAhfrStRd0m7iS59Mup75Szp8/OOESMjiRx38W8o88ezg="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.23_1622115672616_0.41900604757926874"},"_hasShrinkwrap":false},"1.3.24":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.24","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"ebb1839790b1b907b44227049f6c877d94d7d4ce","_id":"capacitor-set-version@1.3.24","_nodeVersion":"14.17.0","_npmVersion":"7.12.1","dist":{"integrity":"sha512-crKh9n7mhJrOnoMnfDaq0pOHJgdXsJsp4c6LsLmO6r8h276qKk9YWp0ODDKJ7m84kwYiKmL9e+4bQftKzPmUkA==","shasum":"83719a0523f53ec6723ec7ff693796afbfb572de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.24.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJguhFVCRA9TVsSAnZWagAA1UsP/iHTLMRGAeGeiaF5q276\nZ9p2dEDXgwOjTGz+7ZdjvEOqSaUWUZ+aEatvn/7nNlRsUFiS8tKQnBnuczjF\nS/7h7PqXOWZSyq+A8M9BKB1/MhutRXDvJ5/LNJ1E2AepFvVtmMKexHvUZW11\niiK2yd+f0/vjlNamVXW7McuQyVK5LvhVXXkodTwgZQ21+fraFgp9re8IBwnq\nLvRvnmU+2+gqed+YRDs1890HakPg3f3Jf+wF+EeS9LGhXxgeHLHrJ6NIA/f8\n7jfcfYosoOlY4Jwn3Six72Bk7Rx5wIvbqIcjXfTCLvIQLU/sAcx0Oso9YIKk\nAahsaIdKsNbTUk/9U0EBE17zzI9HdiIQ9MHlaXqbnVFuvgAtR62irNduAYx4\nqWhA4PJXl2Nze0+YOEnMyPmiDe/DNMtvmfQ/baWRjlvCkhzgGtgonzdgwkJy\nTYc1MPkzy44vUNgotmHQDMIsciMLWpdCoo26B+JpEUh875QOASvTnYIj+0W6\nLVwCZmydUfGiqEDGAOJnQAIgAXc9vDNIYEzKuRn5p4AxYgTStrWcoHVhb0CA\nmEwp8MRnyAkGYGBwY5I5k6Eopdj81NgGCWGOaEHYdIQ1UK8DY0/jfFvF0jJj\nBfbG5xaCx0h8fDNs7XVu1w+2fChHnayE87ifFUEgm+jK7zm5ckz3BP0KO63t\nqsyX\r\n=bT7z\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4/WR/Vm4QRji9O26b6U1UpDNt38Jq2twu828LdeTaBAIgRmmEhtKETfDrcDrY1RN/ph6Duovho/se7ACKmQ1wjMY="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.24_1622806869755_0.28665023856174865"},"_hasShrinkwrap":false},"1.3.25":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.25","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"e5f8c351c8a8f3cfd4929b39f113d8101e296d59","_id":"capacitor-set-version@1.3.25","_nodeVersion":"14.17.0","_npmVersion":"7.12.1","dist":{"integrity":"sha512-MnXSNLucgYx+lvAEcFrgA2p6ENOLu7eVJLRuM1W8rWDWO6Oorijk+lsEN8vn+DYI6GrGqeZge1OG2u2jNoTGbA==","shasum":"aa8cc15f2234528b1d9b0ead42d5ff1ab2331ac5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.25.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvgK7CRA9TVsSAnZWagAAZ6cP/jVQe60/jmy0bjdKi5WZ\nAHhbBeHZ8tdZjv2wqQhafHyNjtPWjoWJkX3mtZL0SXnqT9eLdXG0zOByF/RI\nVs8XueJGE/LRxuzLEE2YggrhxcOqwWcZh8GTtg59N9hQfzKtIHwpxFrJsUVA\nbfvW43Wuc2qvI9gVWqS9blY6Llh18ffBTSqegX3Gz5hEa+CAu5ZWrMPiDKE4\npVQGLHfL8lFXjALXmY7nnNxbYa2999FAdbxctlfmRbr0JU9ZOHb47AZ3NvSI\nSUI5GIZRnA5/UGoklUuwdOZ2ZjS1JlQ2SgROJiH70d+ssrWh5DIbEUTCgoDA\nkzvV5khawYcxpBSdYOK8TmnRCnsYy7+IA1b/T3S0irSvb+72zus1d/W9wBFE\nbzvwZIC5BG3B8m4HWCw/nFWpRk2XkBjhZLoKQ0I7ZiLH6s60Gc3Szrd0Fr0/\nAgG5N+x2FW94UgZVGjaJCVDPfGWGO/qBsc+yoNlrNDoWP9bGQQovE4G/qmhp\n3HhK/3KGU8QpiezYs56dvJiC79lfcOvUTDxmfc2Bt4ILfruA7Myg768+PP7N\nP6xDGfm801PUb/5Wx1G0UhrCV8O9GKnh/sybJau4TKIRUalL/LFimTs/f+KQ\ns+yGcOSdTfztDP5hx/hwoqQ0Ht1oBfa2fWC9L3tw7lY4+o5BCm1R4L8RjCSa\nv2yg\r\n=cBog\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFFeQ2BDsUydRHlg8ewpmM3jyidIi2UQsVrSM/t9du89AiB279asA57dH9YKraO3Gam7gN2Djsuy0cax0PicipgE4Q=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.25_1623065274910_0.5862826512364014"},"_hasShrinkwrap":false},"1.3.26":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.26","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"85bfa59db34b15fdf507ced942f4152e382a86b0","_id":"capacitor-set-version@1.3.26","_nodeVersion":"14.17.0","_npmVersion":"7.12.1","dist":{"integrity":"sha512-JDy9GL6zJ3NmM2+On9hfrMm5dHFxUWA3Y+9uiJlXBDP6yDN4KXFmznI82CZg0emRrpPtscqfpjKrzHxUM5/4Nw==","shasum":"eeaa6a5f9089db9499d33948f1704c5357d6aae5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.26.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxz4kCRA9TVsSAnZWagAAv5QP/j5WeZZRuVSuqDgQoqLj\n64u4ryUBVH24STDSOlCypjifSa67V1OQht1BDw+M2VREamzmizwFu6TBtoFT\nGAi7PH29xtcRekOWhutlrqaSJwWdLJTDEAw4W8+DTNeIMkzjcTrnmHYsrRe9\nSr7dHxaRP6yQR1DhytYCdtS41tB0576jws/B2dkAwwEobPFt/RAvWA5L0qvB\n749UwNtxeD4BD04cCEp2jX9RczLhgTxjMDZJflVTBuieKngskhLJkGpj6rnz\nFQDHBvOZcjp5tyclWzltr6BN8vfC9cKigRnYpX59L51Bu3au2l2Qaie0Q0bl\ni4yEfhmNhMDl/kebv5/vIkWF340ZXqhHI5q/acoumlXlGdvtkafJs5vAjFRL\nk33Z6mDJ8noeIvWLI0kfxGfSnKIAiZgs0JhMMmbqZ5DUgCuL03JxsUQn5IzI\n8Mfb0sPjnxPSXcDDXiuOldi6gPMn2+xFBdYYNp9iRwOFb3G1gx38ym69WCRc\nHjxyYBfmOg0EvOxuHz6yRl9Flrv9vsO9LdQXXm+hJoFNcbpdHKLlFLczqwxi\nyuEpCiySCNkzaxH8JwXiqMKkxMz6NJStMspSBQZVjHhCvh0f8qWxgI43tLx7\nSNjXsN1P8H7BLy6bqB6wT/X4h+WE6GdeT2Mdx9FqC6Ro5i43caHsDcim9WfL\nBCIV\r\n=HQ6U\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCT/W6sKFU7QFMT7aB9CtlN6WzZQM2uQyc9KsKVzV4RbgIgf11uRhDb4q5tcW70YUQXfFFvl5JmOzdk2wXpCAw7PqM="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.26_1623670308190_0.9521786325746588"},"_hasShrinkwrap":false},"1.3.27":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.27","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"d0d43e5a50d5724886db7be67328dbd9ccf658ed","_id":"capacitor-set-version@1.3.27","_nodeVersion":"14.17.0","_npmVersion":"7.17.0","dist":{"integrity":"sha512-MxVtujgk0Ob0IA+N9oQo3t8STXFUBkWk+K/Imv+rvsUWSmGHNDsa4B9smL4PBi/UiChasS0Xca7Wxs+Frfdb+g==","shasum":"80211a1459525a6ad5035183197662f09b745838","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.27.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzheHCRA9TVsSAnZWagAAfm4P/2VG0N+7k0XFidu7l4ej\nPvBYEzQc9tKdrR1KINws6YcyZNlHJs4+3HdIawMsIKwits6E4c2jm5gVxZiU\nYP5A1sB9diQA9AqMcOsynB6NwAHCVBd0lwRXOz3qrowko20O9B9KyBZ2FgWP\ndu5vb9iZknBph7qZZhVqEzz9/QA1vVKz1bveBKg7gaQl+/xhQGtKxmSAgOyF\nxkw1/8+Y9D+N2ZZsxwP/Q1yGDMqtPKPyzSjusQPxTzxyiI9OW0TEEU1jWYiJ\ngdlbaX8Pl2HUoM0hnuoAItHlFu9BEaIMIb7yR1udNKbd21PWOktJKpvptUrk\nA1qFtf85IgePQj27mNm9G5tFTYtZ1M3ikqwUeiEH2G1yQqpmlvB1vE5bfu9h\n5Xsvq+W6WEDtpLfo6R8dLXi7N8y0wslrLM86HVBXXpkM6eJ85HJXbNZUGO0E\n2JAqcfK66zjZLgwsUqqbGB/l8+egpzsSlVRCNxeKBHYPjVOow7o7ibf8ArpR\nKLKfBdnyc+/PsabmqemWG1v3JfpExI+zn6EAVUlj5jGVuiqRmUkDLa77bhqA\nruficdcaazs4CwYpxtb89Kovbha2IOoQpNHikIimZPd7eHteCXfF6onvWG4O\nY1T+EAjQkUCSvc5h+YbFPN8kYBDlL58bA2Gh+saYf4qwFDzGSRGR9nKth5Lf\nb/jZ\r\n=2mYo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHm/9Gi39byP/QslPnsWIWD3zHYqwRUPRjBpyhJKDAMSAiEA43Lghxh2CW9VkDOgQ9vjePyneV8nCUwirUMh4exy5wc="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.27_1624119175177_0.8843024280975824"},"_hasShrinkwrap":false},"1.3.28":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.28","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"f614ea4f7a4b6795e9e8105390d81dc34c53761f","_id":"capacitor-set-version@1.3.28","_nodeVersion":"14.17.0","_npmVersion":"7.17.0","dist":{"integrity":"sha512-8NGZoLw/g4IgGov+rLRWfM8jRufJB2kqdiSdUWqwojADLrZu2ZxaX4ViHJ7MeUzaX1Tlib1SoxkzbqoAujJMfA==","shasum":"b35cd24319228179f26bf297228e6fd1d72e2423","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.28.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzhtgCRA9TVsSAnZWagAAzdsP/R0pIPBz4Jq3DwN0U1IH\n19j3EVjX+tOzI+OhYDT9utv8idnFF92AZ8s3Z/PskP+4FUHOlfS07TxRYr8R\nc0Epz3z3ffMrsGbwILA4Tv0nATZX2xRx9KHgiIxcO0bhu8ZnQhi3di9qBT4c\nZvJwhhsj0Zp5rCZZ3zEMb8vEXcD6wp8A2xBLNTSt0/mmhVbw+S/bvi/K2EMl\nhLFH2nmxxAWZa5eE1CnLYcORFZE+UB/xgD/7EvmstWbTi8zp8zlgFJW99HmS\n81Vo4K08oP5Fd3SZ75riv0H9j2nLT8we9cIGt0/tWUG+beM06SPsoW8SjfKG\n0xiNutD/PWF/GWTVhzS7TcntgVViD77dZa0DPkD/Q8WXdGkGzc1eOpQIlKgV\ndHbO9Pbz3YTuXveH3V9XTtC8QZ3OAz1IpZ1499qusKfW9BlcpB2eznjjGvOD\n89o7SdRFwSZFFOLOHrdTC9lmHVnNF5kZ6qLdkYyMjUZdSZf5d2Wp254pEwGJ\nE/YgnkE2/fH6aZwh9h//m4nnC4i3d8XXzW1t6k6NI7jZ3dfW+W4V7+EfmXc7\ntxaL+UuG+51GKP2/Xh+U0Y7V/JXP+9c08aE2857YRnNWRj/L8Cw+MsPHw+Su\ncWqmwxKtvK1U+Gw0JaLIVoK5xVmfYiFbi71ghuuc7XN/KWAym+lNThbWA7Mc\ncQls\r\n=cChY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC8W3c+zpjsf4jwV+YekcUxTdcWGIvBaJ3AlUCA6BV2ewIhAPIZrFfN+9x2Wr+6YBBrbodUMydyIyS16ipJhURBJYzO"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.28_1624120160366_0.9478396015383312"},"_hasShrinkwrap":false},"1.3.29":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.29","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^15.0.0","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"7d678537bb6ce055fdc53369d70498e3cd9eebdb","_id":"capacitor-set-version@1.3.29","_nodeVersion":"14.17.0","_npmVersion":"7.17.0","dist":{"integrity":"sha512-0SNs1HErg5cVBTzINEp5V2JHQhEX2SLHA8ke9UfqhytoABPNGCBmiYkpLHIo8pJxMK9rBY9TGt0j2b3DkW2XCw==","shasum":"e5a9dcda2694add59d7762beea0f7123471482b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.29.tgz","fileCount":11,"unpackedSize":16760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzhxsCRA9TVsSAnZWagAA6gMP/31eWb5gD6/kg00iFK0A\nqs80ihvMCbcAvsyXYYA4SBJS2ANl1+n42HcJ7gp5A455rir28HiIuME3+3W9\niigTswGOrbCSbEYF7wJj8WztHTyv2SM+pe8aY2TVijZ3eNjLh+amNAqvyHh2\n4YBrO08oX7qhfied4H39bVcP13JWOQHO4H/D4xjZ/YraiLAnTJjbAu4B61DP\nk7Z8X2+GAS3yg0Q6INSAlSfWaQ4fLZZsO1D+K6LF1Bw1bdEEfp/DxwsGaNJm\ntSEr8EEZah6mED8jTriXWqoEXgtqgSGBM7TqeTg6LaWksRftJyH3YVDfZ0Cn\nh3ocPVqOhfuDIdiE1Lij3JjzcXXvcghkv17X2WsaV4t527U7CoGEvxf002Sw\nfZiLfeMEumsWCIDy55wPzGAY0ff7AtzeIuaYXjzDSTrhBjIT5YQrJhBJn129\nQPH16ZAZHOVJYwcaL3PaVCXeSN1M4Wqov9hFV2VBz17shnCTUL5t1qhJbJYI\n5sSXmnU2hxk14UClesFOFjUwZoQKLDIGuurBGOOK9/QwTt2C+N5oao+F5Lm5\nfflJRGVLckfc1wbgFYfN9HAd+GX35xeSq8jxSiBCwG7KULEYWVX5G/iJHwXc\nfI98CvMJ+8BGtbCZ9MlxeXaNBa3ynX9uJ74jWJelwOOB/9USFFUXPR3fAGjp\nTHJj\r\n=s470\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFTFJPGtI9uNhF1Qca6gLe2uFZ5YGvn53iwitnJSfSQkAiB+kZcDbBMExcieyfQVItzMJ1rlfQK8s7gl7IhCf+Rc0w=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.29_1624120428174_0.7636212601136514"},"_hasShrinkwrap":false},"1.3.30":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.30","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"8029e2d61c6a2c53b99174244fff8fafdad93e52","_id":"capacitor-set-version@1.3.30","_nodeVersion":"14.18.2","_npmVersion":"7.17.0","dist":{"integrity":"sha512-W4Zg6Zlg7mzbzqM30YO9yKUIhoxwHVZxSguxyGy0piIIw8lE2Iym/1KgnkxM1atOJ56xU59THlEvLuhEvfnWkw==","shasum":"5c3952a02d177b1a1af230e863fe9c8cf1194b3c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.30.tgz","fileCount":11,"unpackedSize":16762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuguECRA9TVsSAnZWagAA2iAP/R0SD/mU4Sv2KacSFtuN\nC5Qz2JkB04MKjxgGpc0W/wNewF+puk7BVW3nniVHVzjedmDtHCJ4YUuIX7oN\nSBmqfkgLR3rMPRzz7GTyUcRZlQMKQkOBQ86she4C3viJdNF24Gcwk9WGZP2u\n0cYWVNCjewOVHn6qJt64PP1QVmjd2IqL2ev3ahDpoQhl7kgG4bjyKW9hn/HM\nR3H0invp/Wbsl/3e+STWD6+9NMykFmLvhFeuG5zTLPm9GJBYTy8GgZRftSd/\nW10W0lcpg4M9DdJ4Q2RICIsRhndH2YBkJj7ZJGX6MaRowBaZwiB1CYFiVhxQ\nIAgVm9TVp1uLlLkmcsjfw7O4tdN96wWrNtSs4ktRcHsYKGC4tCPbJx7Us2h6\nUoQ1epQRSluDc+H8yyV1S8+RbTq918X/DZpVU3QkvgZOUuyzF+X615MzibxS\nRC2y73xiuobPLsNVv1Z6SD2Nbj3UQ7A73MGo2Ovjd9EMGlvTZQko4nD9proy\njAFMNGluyp9tPpdYbEhqJ9sU+uZNm8RajLapLnJbub0r8mpZkNDWZMNoq/XS\nRYUTt68zDgMqAKFIzcMk+flKfD9kjekv4gDSSfa8vgUjsEc2UrxmE5Fc048T\nnowS55WXm/5CZes1VCzNU8mB6n2OgQcQs0SVe4NeTDj+1DRt15TD0FH5leOh\ntR2j\r\n=AKg5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg4FT8uWxHOVxKj6OJCxxp14NM7NNA7GPN0GfiL8PpPQIgaODViHcPkp3xPnHppUOBqwkC7tk2JGi+TO4xaIeCOqU="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.30_1639582596009_0.7762119363789186"},"_hasShrinkwrap":false},"1.3.31":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.31","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"50424a93ea19fdc3d55655f6ab3abdbc549b2f1e","_id":"capacitor-set-version@1.3.31","_nodeVersion":"14.18.2","_npmVersion":"7.17.0","dist":{"integrity":"sha512-x3jgH+Vh+nZsqjYDXqIVLf9wzcZ2k/gwwZdoL9HiKTf3Z/Pc5a8CtYEjxEnXUwSyJoas1rry1ytCZxQ6iV8a3Q==","shasum":"92bc3832ff18c4325a83bd92f4b7cf11f5eb673b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.31.tgz","fileCount":11,"unpackedSize":16762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuhbICRA9TVsSAnZWagAA8HwP/jVXCV2KWCvXctxXMVUL\nBhf22nb7g8417cE3jBX7EYQEarO8owP+4vbkbPzIqoaAPkxv7eL0Gnkztj4/\nP+IsxYV9WbescC5sSIO8Cpjp1WNk+tcwV6WDLQrW1ojY1mdwG6uqbTqcn158\nr/sv+06g0jzU6rEPrKXKZrwHy3JU1XTwRm6F8yrqlO6PT31sinTQiFifnAEJ\nCypHNA6JY2fskYPcdbJF0LW8EdzmbrRNWc4x4PK5H6b7hbhakxacO/90IsyW\np0mlngqAVzQlvPogCeK1lU8lEwEBB1tSLAECX6qTyGGHsgw1eDqEutggR8q5\nEHElqW58FZDuhu2KSfd24t2aH8ecx6PBke6hzhLfaZDwGRJRBjz6N0zdry8/\n/gKd6TQPjlDnv2V+Xyx3kJ4z3gHAGuIC+QRbtMNt2dapdyU6t2C319eP6QhQ\nZRF1SRblAiZlPYhJwAv+yFThzHm4kQOa8d0bAUcJ1ga91L4TIZZQGhPuSWMy\n5GwH9CbMbCM94Vp5CJfYHLZLMY97FQvVmkLyLtD/xIf0T1oUiDq8aI4wWW6w\nJ7nmOQ9K+jzfI4qnE5ljNeDZdsdoVTq/3vnRuwN0LQA7v7zBpP1vyxnNmSyY\nVPnEEE9rUN6BgQGpqv6HxhHwjri3zVQKDBqJvxJuvqBr4eEyRJbovl01fh79\nL5O1\r\n=5NFR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID1tvgMULkrb8QhxQFQbgmkMQmpJ5dnuGr3LNzi2na6qAiEAnYZ6+n/ajupnkj36NNB4VKjfQuz1P+0P5CoSpE+vQAU="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.31_1639585479910_0.9665807461429374"},"_hasShrinkwrap":false},"1.3.32":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.32","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^6.0.0","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"72e9876ed2538902bbacaa66ee742a148a40d2f4","_id":"capacitor-set-version@1.3.32","_nodeVersion":"14.18.2","_npmVersion":"7.17.0","dist":{"integrity":"sha512-8ArxuSGintecv9ocS6G0B0fm1Nj4Xa8gr1ZTYdszvmuFpfkzpLLVXa+hsMerRUApqpE/5Lnbdiyj66FiybUXbg==","shasum":"7cd2bde0232f4169e67b21a500d98434772dca7c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.32.tgz","fileCount":11,"unpackedSize":16773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuijmCRA9TVsSAnZWagAASqcP/3RtF6iejGzUDIREfoTQ\nAf29c7T6JO+1D2J2wzZeEYdros6bUto361cnQ3kzTegZfmtDq0eHojzHKEOm\natvThdwTRXWLZ43Isd9gEEd0uEqjp3sTVZiYvkeirvPYqER7QVccyRN1z/dt\n4msmO8QxeBfO6eLxBe1Fg84sKyDq3ooyjhgE4DvywOqRJz9YBxx/GNjPAX7U\n5cdo+8OqQUu8TDntXVTF1ViKf5nx4XsXkHGDdmOy4aGtYEaZDyL6J97r0tpy\nH05W0LF9F3aPsn1/C+FhFFaA2VjYjLa49rPTtLYi6Hi9NSJn7r3sj/5WQLKQ\nxh89aadPTY+xjIhSJpplwGksmRTFCcz07lzij7y3x1+mYBRYdlU0Y1Hy4va/\n1NwqjIQVHzf5csDmgqG8pcGf9ntK36afLzYVGdnycHfCeg8TOh7qw9dCfZXw\nruDbpShYNVbjq+U7CqRm3Xez6M2GvtjzF74/GoQUDb+v8pC4MQYHXjYDJ/uF\nydHwrNhqC+oOrgb7W3xWLoaxlkvMZ6KYvnUPaKAidMn+7YZvpmqM1wVVNgvn\nvh5aNYpkw7G1PV0s5IekOSq81PcqZqzGbyuIS0nQoYHl7KHoVEooP5c5lV1o\nl/Y0PPfkvOEjC1FX5xYs1ehfNyM63ZUrT08FcY0soPhPF5/QhXF6B19AuXog\nTV6Z\r\n=y4/N\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDJtvjnWqYcI6hehUEO56TQoYpaP/tMdG3qa76rxdedNwIgG1k1NBgqvkxZ7iZbZPfwfwiFg2DOmiO6Aq8M2lgNqT0="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.32_1639590117865_0.3094448774158991"},"_hasShrinkwrap":false},"1.3.33":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.33","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^1.2.4","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^7.0.4","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"4ffcc7d495d236f44457dd54b651605e9680c5d8","_id":"capacitor-set-version@1.3.33","_nodeVersion":"14.18.2","_npmVersion":"7.17.0","dist":{"integrity":"sha512-pymEviuQfbXuiHycbr2MPnG9ZhLGNMmDz3e4l/yeEkzspINn36mvbH/0odEC5RNwYr8oNSiCfNsDNkLiy3Watg==","shasum":"fd9c5a7a5244ec20a3adff8be0dcd31a9b0c6fcb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.33.tgz","fileCount":11,"unpackedSize":16773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhui2PCRA9TVsSAnZWagAAfMsP/j8TZ9I06DBQUbaGJ1nN\n5qJzq2iIMKSBhwMvDB0H0gkB3O90UlhuylXGwClVIdLBzmypomt6wsixsFi+\nzyV5FN68ggGVKjyZpDk8XwG7w5x57XdZ10a4e+vw4C+WFw3Hklhkweea5cBY\nC9lVIy3f69Bi/6zqi1CE4TTNP2wfrOX3IY/OklVnYgHWRbzPQz2ZxYdERJ1D\n2QqsRVVecLJtv2x/r6d4wZpkjLKER7MV1QyJ7WegmvJi9JJvxFIOGaXYItEO\nev7FRDuJykjH4gaNXH16ofK0ZzregAyjzxA2OJAcPwEJdapX388CHKQ4vWri\nFXAKPIKEGpoozUFqvpM/tjEGDN7JKj7cqOdD0/FH8RQe22/nqWXqrYH4ZUEJ\nqyxhd1rgvBWDPDnsbI6cQ+0sqaSwBe6RCfAwpmbC05evuHvrjQXG2cX/wJi8\nBdBaAZI4prXGSqW1O/5S/OwaG+eRbgK4iFp+KMN2pJp7BtTdJcnbrvtw7MEA\niFhitesNGOCSR8yF803ABTrKB0M/9vl1QkaRzCE/Vnz9nrUCH0CjXtDzDauX\n29Gsay0X8T1mS/U5uaXLtk55W5luISRATESJMPg43dAab3Sd3IKL46S23whY\n4zYxhYccSgda0G418vV4buNg4z+JU13SN6a6RP+sjVAZdRdLuJ3dYMNsEa5X\naHct\r\n=I8Fb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzDTDCMhViiFosxlh/+u3LbxKKm5s6pK4rYE1llFnW5AIgc2RO1E04nseu9SrXuG0XLXmg6Y4AuEKLRHjJ4t0aeKE="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.33_1639591311809_0.456945435930866"},"_hasShrinkwrap":false},"1.3.34":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.34","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^2.3.1","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^8.2.2","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^7.0.4","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"1c4507e4bfa4f3d26c45a23da5caaa9ee871bee5","_id":"capacitor-set-version@1.3.34","_nodeVersion":"14.18.3","_npmVersion":"7.17.0","dist":{"integrity":"sha512-9cH40i+Fz/r4DZSTr6TW9sRcT5N7U50LEUFWuoXwbKbvGjzRS3CyV5Wd42JO8KUg4HVQxLuTtX0YJ1Sa3hSvPA==","shasum":"cd01a86424549b57461850821f1ad20eb311a316","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.34.tgz","fileCount":11,"unpackedSize":16773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAlohCRA9TVsSAnZWagAAYSwQAIyKD2m8t9v1SYRIAzr8\nlLBK6oGC+VDJ8fPcxZp37HVNY5hR7MJn5JvmRhKZkoYl3gcsJxI0gLwpBl1b\naQmR7RF/LseZhgMIuai+oMXQZGfTjEHu47jze6HpXsnBAw8VpMbPDWKKS1/m\nRuH/dv7Po0qoco1t0UzB3AnsKyvMOXt9IN3EWEnGG8qX49fCnQP2zE/A8ItE\nvdFZRnivY6FeQyJ+qjsXbnuVubizjFogUqKQKKsNFujbTnzqybS/Aip5FrgR\nPJO3d2dmImYVgBkF791mSMhHWsbD3KAb+xmrjlmv9MFrn+02KBl9cpntugoo\nMIK9IZyVRhcTHkLD2UH4F8i0Kw91rQ/+778NBLKuPC8s6hVdk7VuFwVY+NC/\nIkqGkr5lDSHKKedKs1T64qNuGDJkTIF01ocQR4EnHS1hNhAl+54LOuEExIhH\nv3L+/tIGjP6V3cqBS6Xbw7g0R+8WBZ7RUClTkcJ2swC5w6gK/Ab2gBFEeLcH\nsrt2P7kxecxatI1g7wQNls31ijZel+m/6w36Z/KYlbS+AncicUFjUqFCfH05\nIH4iyZoxvexrcu3Yzs0t/pbMWB88XFKeTwmp06kCMA2vZAn4ZzunaSHmNAHA\nBjaHvUMx9vI/q7rz+2hvRRvAZ0VoZElELGfnmiMpIWazgowga845bw7irH11\nUii/\r\n=OFqo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVSfgqBcZPWCuCBLdBZSWb4xKlIFnUw9STgUvsRftzhAIgHDX0QLrkxtOuCeqUeRDV/ExiUo7jcu0FLQ0LxVsYN5E="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.34_1644321313360_0.06650836756462364"},"_hasShrinkwrap":false},"1.3.35":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"1.3.35","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"scripts":{"prepare":"husky install","prepack":"rm -rf lib && tsc -b","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","lint":"eslint . --ext .ts --config .eslintrc","version":"oclif-dev readme && git add README.md"},"main":"lib/index.js","types":"lib/index.d.ts","engines":{"node":">=8.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"plugins":["@oclif/plugin-help","@oclif/plugin-not-found"],"bin":"capacitor-set-version"},"dependencies":{"@oclif/command":"^1.8.0","@oclif/config":"^1.17.0","@oclif/plugin-help":"^3.2.2","@oclif/plugin-not-found":"^2.3.1","plist":"^3.0.2","semver":"^7.3.5","tslib":"^2.2.0"},"devDependencies":{"@commitlint/cli":"^12.1.1","@commitlint/config-conventional":"^12.1.1","@oclif/dev-cli":"^1.26.0","@oclif/test":"^1.2.8","@semantic-release/changelog":"^5.0.1","@semantic-release/git":"^9.0.0","@semantic-release/github":"^7.2.1","@types/chai":"^4.2.16","@types/mocha":"^9.1.0","@types/mock-fs":"^4.13.0","@types/node":"^16.11.13","@types/plist":"^3.0.2","@types/semver":"^7.3.4","@typescript-eslint/eslint-plugin":"^4.21.0","@typescript-eslint/parser":"^4.21.0","chai":"^4.3.4","eslint":"^7.23.0","eslint-config-prettier":"^8.1.0","eslint-plugin-prettier":"^3.3.1","husky":"^7.0.4","mocha":"^5.2.0","mock-fs":"^5.0.0","nyc":"^15.1.0","prettier":"^2.2.1","semantic-release":"^17.4.2","ts-node":"^10.0.0","typescript":"^4.2.4"},"gitHead":"166e226cf04c8aee33b39fcbd6335ff95ceae3a2","_id":"capacitor-set-version@1.3.35","_nodeVersion":"14.18.3","_npmVersion":"7.17.0","dist":{"integrity":"sha512-jsdS0D+kY60sJr6K+mANpyh3k4wzr2dWJyNuQ6ZVJYLtp0OD0nWHezu2ibdGmSHTbOUEuXcmGV1YJSxYR90OlA==","shasum":"054838318308efb86dd47d125f51552530790c82","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-1.3.35.tgz","fileCount":11,"unpackedSize":16773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAlpDCRA9TVsSAnZWagAAzX0P/3GV6QlXfzf6a6aSPLNY\nhISfDk9mYZQ8WnI/Vrz7qg2+X/chOcyyu/GUOnqH3WF1gCz6asfRaS4sauWG\nz7+5slgeSvzSrAiKgF3V+mTTUDtTotkD1cKZ6MsdXuAXdVmP+kXCv+pywFiQ\n+qcnXkhbSnMTgAKVcmYGZFkTBE6REniqIVdbUsn+XKt/SdyUKA4Fzc+2XHYG\nlAeEUysxPoQ6V0nfr6TUP92BjpwgqewQ3Bt0qm5iNbEFzShbUTmGtvEQY0+x\nklW+1VnqPq0Z2bbhDLSE2OJQ2RUnctmh5ZKYymtwohnuYFLVryD4yvDKMsw0\n2Ukmu6e3lxmB0WbKCAEWDNHuZNMPTCy4qiFJjFw+L9Y8TPTfhqKOTTzLVVgq\nSwa4gspQrpBns6BDxy/CbVdxZX6ATKFYrtgw4zzoadzofK4xpG47W0MI1t8U\n+leeiIxDC342/HJciJ1VEA4fw6OGgbe3NQqzdVQM0PS9d+qRxZ1b0cHvXTrU\n9Ucy54c4GXIVc3YmEdSUqahvenVX85h01wzfukuKQ6wE/KW1MiH/4kYyw1xd\nMxEY1oGZ/wuQjHg2gnKu65ENtc23G3TwfJz7/0ASqEZJBaOTAApiKE2njU4y\n/+QIBWfQnIriEaQk/VHzorU1X3BfPsC5rTHkIGwms4dkxskExJbaauuz6gh9\nXciN\r\n=ZGo5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZzMfODEEQ6hxW+x9iq4byj3/BK27DO1pHD1v7RMEttwIhAKDtyyf9ticRFY6jAIEMfm32YVI3+47cg5zUaY+n9/xV"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_1.3.35_1644321346954_0.7713754583918739"},"_hasShrinkwrap":false},"2.0.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.1.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.0.4","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.2.3","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.4","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.9.4","@types/plist":"^3.0.2","@types/semver":"^7.3.9","@typescript-eslint/eslint-plugin":"^5.19.0","@typescript-eslint/parser":"^5.19.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.6.2","semantic-release":"^19.0.2","shx":"^0.3.3","ts-node":"^10.2.1","tslib":"^2.3.1","typescript":"~4.4.3"},"gitHead":"a06b466229660c7ce1710e43c506bfeb2dd26a85","_id":"capacitor-set-version@2.0.0","_nodeVersion":"16.15.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-zz5aSbg6lq8Mb1StbbDHAz+71P8tloOgUKklCZL4FONilISNunQErAAPFgPb17imXyywuzD6VZz7gQ9OTK5/vw==","shasum":"58a77e8bd055cca4e8a0368fc75e6f083f7d36ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.0.tgz","fileCount":34,"unpackedSize":30128,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHeIiyuY2WYnEwGCsCZd9rTrqIPk5pA0MvBbHeqNOSMzAiBoUpAwcQ6fU7wMPbnl8hxM8F9TpWPGOYDqT6sW0Z/O5A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihQwTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqkaQ/+JbBRExX8fdRChwVjI4w+nNR5GyG7YVicUUyizxGohWhZ7cvP\r\nNS/oMZ3SFeSmX1/dm2jSorK7+9jV5Falpkj/ebVk5YErhQitLg6AYGlpvhCj\r\ncFVv3Cy2QoqAWf58hg0QXzET2ryCjKSePilrSu+djQLqGfjuCNUmAAGdN1r1\r\nS1lPOCBdN+Ajo1PrjKSdIERR7YqFaBQwAeRS7VMmU4SgUcI9Smu1kK6ja7ZG\r\nTLvbQuvxuHJ0qGZ/izcX2Z+oOW1ej/zU6er1ILZl9YJT8ULMhjyCEEsICZ4z\r\nsI5mw9ISyZbc8kH/CFwUB8O6WoknIwq5ToIKLxU5TLC3rRdhEUsyl8EVash3\r\n06I+ybIB+z7QoAWGarqrC4Nu3ikP37IkgiXxCjbZCo6em42CGy5TaAhx6Rmw\r\nEd5oqzJrTbXEyO3c8Dzu+Nz8STySjPyjwdQdrGh/I7HYhB0QhHGmEJvCkOeZ\r\nS9OCERQ/gX4qclX1pyTdDQydhG6FZhnExCKB2BAwoO7tNf06kDwhTA3uC83L\r\nEvE1v8yof9k7HxtHPw5wYaMj7jDbbv+tCu6/A9b3mlF+qSj6/TCFrpMwLSwh\r\nEeZwPnwaAzdbtPSHs1pUMSpTTDS4ED+GAkSwJgwRmeEYwghlw19fQra3i2Pw\r\nVxdb5uwweu7mvqRTTgEfddH1fBRCfcyrCqw=\r\n=eAkn\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.0_1652886547248_0.4242913980012568"},"_hasShrinkwrap":false},"2.0.1":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.1","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.1.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.0.4","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.2.3","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.4","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.9.4","@types/plist":"^3.0.2","@types/semver":"^7.3.9","@typescript-eslint/eslint-plugin":"^5.19.0","@typescript-eslint/parser":"^5.19.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.6.2","semantic-release":"^19.0.2","shx":"^0.3.3","ts-node":"^10.2.1","tslib":"^2.3.1","typescript":"~4.4.3"},"gitHead":"6eaebad2bd08126de10993d2c4279aa55179ffa5","_id":"capacitor-set-version@2.0.1","_nodeVersion":"16.15.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-Ix9qjhB/nevBhMAmw8t2CFW2i+af0zicdrcye1qrmkznskKs6+GighcmxP/NBtCRveQWajvEdaX1DejdLmav2w==","shasum":"d8fe511739b067f629e1b54981dc8106da15b55b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.1.tgz","fileCount":34,"unpackedSize":30139,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDe1cP4HHd1gfnMdfRrNcopvPSpI+2B6ZzGy8fZirdJUAiBCtQrUoCZGUCOUsI2PdKoeglK/X20qRGPx9c6QpXYwCg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijZhmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4YBAAgWQCeSboLyV78wqR2zbsiFCg26gNqx3uqQFOcQg9eN3G5bfS\r\nsjOcanEXPf1t83rGPv2T8/9CU9Cxo7VAWfBE9SOemm9apE+D0npgYmxY3Pv8\r\n/Q4F4Ij0CwthQDfbzny/ijMiPID4t4xJ4hQAEZ3fzTFjJ5iD+eDAJATmskRW\r\nuHqYKXOSCbxmYZEuFi7Y+G2M45YUlGj4KPvMWqa6BPmDrCAUlLLxkMEMRRzx\r\n6cgA03k2oBnR6ZUOmtyuGljUu9PNBh+dlnmDu6ZThc0Nttq1V/VLvgiCTpN8\r\nykiw2R/lbEEvaNOB2ttX1+lcIT2QjGQ37ASHs2KZoJn/PixuJeJmQwbkN8jT\r\nFWaYmx26Um5c4YeLtNqT8yWux6mi60NZamMpe7IFNcTn+KZY3Ej6b2utZApz\r\nDwt1e13c47/bZMuOlC8rrCkC3Txp8UVklCsdqhUIp8E9uuaZITxOEiu3Wknd\r\nUDsRRMBMqs8ak0XWjyuGyfmp8FI7chRk6kzQpVYh2s+R2WT645TE2QHdIsEM\r\nveETjVC6/+A3XprO9b7VglmNo9Q9JF2KqTlybGFAK2T9CvXATj0gMmHutjIM\r\nTa6J0uc/+3dsV98LVdtgKsC8+dECCYFSAHuZDywsuCTZcFqeQkWCTVCp2wd/\r\nEsqp6btMKagnVkrZ/yAQ/Na4kEJCbZv59ss=\r\n=o/GU\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.1_1653446758700_0.6062857798805037"},"_hasShrinkwrap":false},"2.0.2":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.2","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.1.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.0.4","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.4","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.9.4","@types/plist":"^3.0.2","@types/semver":"^7.3.9","@typescript-eslint/eslint-plugin":"^5.19.0","@typescript-eslint/parser":"^5.19.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.6.2","semantic-release":"^19.0.2","shx":"^0.3.3","ts-node":"^10.2.1","tslib":"^2.3.1","typescript":"~4.4.3"},"gitHead":"176ace823d6af838d048ec194490a1a13b7d520a","_id":"capacitor-set-version@2.0.2","_nodeVersion":"16.15.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-3WrQM+FD0JBRTJhnDQ8cAq778NGNaPxNjkuwgdERBl28HpmqHbQjshEd/q6qbg+0NoYxRxSsdyJdR2sV7x45sA==","shasum":"6fb2d688c38bcd5eb359ab684f49b760dcd48b20","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.2.tgz","fileCount":34,"unpackedSize":30139,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxYaMQCipaeHgc6mvU2fyuYn8X4kMqQfi0Y3qaGTp3xwIgG/amR+PFxhNIXkYTiMTWmGpmAuI4gxdbaMmT/Eh9UgA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijZ6mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCzBAAkPj6ZR77IsFv77CSh4w8OJl6ikLbYm8jnnUWrE4Pq9YFY51R\r\nP8kZsKWLFJU7I9wMeCiRG1sleXchxt8S0fHVvLyCfFyJomRLdQ7hgWY2fwxw\r\nhn0sd8nmYXaqXAULU8cfKY/uPvVM183LMlXO4asPGzPR6wfbRiBpkTi0N0Nj\r\ns+XHelH+Vjae2b2rwC2dII2uxrKrVnNXyyP3H3Pc7b8ahnQABzb159S2h8Ww\r\nvdEalOYsQdtx4AlBzMXyZY7EwVEWJ/LPlP+nzQr2jGavzME0tGhVD52C+ATK\r\nwi6NXf2MkjZlASXxLLENb2aNFYvOiFQPdSjvyBHPRxQjCM3j4IQbr4sIVd6F\r\nGht4w458T9QcRealpucluUQ+VY2ed44FyWxzrEXMUY8gYn+pK/FABGAWl4mF\r\nrzMIHJ4W6q/XstExFQizMFeLB1daWED5LPKRTja+Q6Ccp3h/3+a2Kn3nog+a\r\nCwptBRccreMD5YDMVLZk1tPC2i5AuoFeU77VTo7KNYHGdz5B9y0RYUg+az/q\r\n/EJ/PeITY2rqusgtLsiQzACJMV0oP9Ybeo0e2b5y6RZjo8pP1JOWsk763wbL\r\nrN43RqEVSrkPkwJBEdeKeWuHdwIU815qsW0wsCTNMeSTenJNJJuO/ryJ+oce\r\nqUtfinLyW5lYYLJhpzFKXXXUR6G9k+/aOR0=\r\n=J/0c\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.2_1653448357892_0.15510749019824943"},"_hasShrinkwrap":false},"2.0.3":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.3","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.1.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.0.4","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.4","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.9.4","@types/plist":"^3.0.2","@types/semver":"^7.3.9","@typescript-eslint/eslint-plugin":"^5.26.0","@typescript-eslint/parser":"^5.26.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.6.2","semantic-release":"^19.0.2","shx":"^0.3.3","ts-node":"^10.8.0","typescript":"~4.7.2"},"gitHead":"cb428fcac3761642140f4da30dfa8e818a3fa04a","_id":"capacitor-set-version@2.0.3","_nodeVersion":"16.15.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-SnFdkdvAnqv3hhX8xlzmOkqi5Xs0+j9JKjr9nsBB8eghAOwnxNDd8p4Qo5ZXtV0JqQkRF3ZaY5hpejzR9AHSpA==","shasum":"ddb9059f130dcdbc499e3b4146220e7370181904","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.3.tgz","fileCount":34,"unpackedSize":30116,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBYdiYGjRqaBuuwnmOaOMjHVzwYPgQDdYoulbop06E8jAiEAnFt+Ph+Fs0iEPks135NBQUpVMha7oQb5QJfHbTEz77A="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikRCFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqXDA/+JHNNmSde5YYzEtyLouDRU5arn4SFC4QAH6QXeIhERdtTMzOn\r\nZ8nILCpD7aHAyzNu8Z7Pco+RQy7F9DYUiy3ayCbKMst4dBJPT+SnawfL3XKj\r\naOXqC9V7ZeJeDrvUZvAWayYHugQWTNjUu/p3hpw8Qepo+TihV+gsDpzW1kQV\r\nw36LWUBz+0GmGbol6c1M7CH1XkCQnNs/7FFDc74+QX3LanCAtE1wgtbgsLeM\r\n90THw5yeh4f1KqA3sIxLuYnweV26zLNPVWvgGHpbJyuOnWp3SGkSTaFSL26+\r\nl0mNubNzhJELMLk5hclBCkZ7zeIzsGxv/DXaHGb8zzyKwvHlroVZNvUyLHxt\r\ngnJCRtXTFEMjQimao9yCzpbZx14JLGEmWGENH0gXq5Tdo31/exx5ypRUvg7P\r\nyUyANAVHTHPo1cIc2GyKIoEkwcp6T8lHfAuVxlk0FWJgeeZq50NLacZ4ANth\r\nnHqTP8b+Yw34b1KkNGTJfJp3re1aihtHUXRg+pxT2w7HDl4eTnXR0xWgFDe3\r\nWji49MGm1s97q33kJDS6d/9/s8Tepw1yM69XWegCRWOqqjOJ4XWy8+xolb+W\r\nkAYzIzbLFrH1lWDsUTsy7Ux42oLB7zl23swVirKqyLdTs4Pae+ImHBSPKt78\r\nAJB7n7F+YiFC0EBZBTP6ks7R/KNVqgMNlyQ=\r\n=0vpm\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.3_1653674116883_0.8036890961980336"},"_hasShrinkwrap":false},"2.0.4":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.4","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.1.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.11.47","@types/plist":"^3.0.2","@types/semver":"^7.3.9","@typescript-eslint/eslint-plugin":"^5.26.0","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.0.0","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.2","shx":"^0.3.3","ts-node":"^10.8.0","typescript":"~4.7.2"},"gitHead":"25bb04b7c1e96eec163c988aa0402bc8239a8092","_id":"capacitor-set-version@2.0.4","_nodeVersion":"16.16.0","_npmVersion":"8.9.0","dist":{"integrity":"sha512-MhKM/yj4exlZvppFtH1ct8fJ7wBfRZ24sobyXZjnjzyc9U3yWIyR8uFJXCZTp3xnEGddIRIhFVsAcbAx8nyUGA==","shasum":"93aeb7d75dbf6b666cbab2032de50e43372ff74e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.4.tgz","fileCount":34,"unpackedSize":29809,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGf5uPxhTeb74rkRVULeZsq/pjLi94VNZuBfXl8MSbN2AiBiw51DUd5PcJDo+4/bLwiTwfYq6mbaY362a/yiSNYuNg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7JGfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrosg/8DbxBW5h/AA/4i2cjmN3FcZ9weK084kWy6Q+y/3VqKPUcRpFG\r\nxWehBbQ5CH99q3JYWG+KI2VTSoxWuhxF7dG5gUfUfWhqVq/A3wDZrEI1kncC\r\nWyOJXzKwlIAgJHj+YWW3Q7Plj4RVMlaGCEzJisV5Um0DzhVmN9xFH1Zi6lFu\r\njvvwGPja/WupcGOoqocwSq++igBI2Zpk4eakkyHHF0sGMiQfMgCLWqRoaq/H\r\nSkGPV0U+Jh1cuxElKHL0fwQzZvmxmvOEMx0cKS0788/7laOZ9OlbWMYlMPbf\r\nXMNfkqyJxF8THqBc6s2pPFpNjRHQ4Cu8d6iXU7XUGagrnyMi1BGRvi7c2T0c\r\nxa2LdYR/e02enBPN4ZjQw6TLIudLjtJaGm8t/GGdpYWDn/NvBwRh80RJ1vHT\r\nrSRfDRRHwsjPmgODilxKVOi1oeS50XWcSkFkO9s+GCPgni213vV0JdTZ+otl\r\nwQRWC2pBuufAsZn33tQgyBD13b3xpXQ+wV6mNKEOG0N7wdjNEhVqTh/OwBeL\r\nTh2Dh1nlq3fdQKR+EY9JQWK2D+8qDXLdBfO04WKqysw70eb4XeL6+IMQ/OF8\r\np0SnPep7xYVCQVL2Zf+UtGYrve4V68AtKpdZrDerazbjXhZPFT7nhCTyeJs/\r\nbHVdlgh6gbpkJR1mztRaB+1V/O1mXOyW+90=\r\n=2I5q\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.4_1659670942927_0.5572886935021057"},"_hasShrinkwrap":false},"2.0.5":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.5","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.5","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.11.47","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.26.0","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.8.0","typescript":"~4.7.2"},"gitHead":"3c0b69e05aa0addfca487d82a4fcc00d0e7cec8f","_id":"capacitor-set-version@2.0.5","_nodeVersion":"16.16.0","_npmVersion":"8.16.0","dist":{"integrity":"sha512-qRtUrl6BvCPCJlZ+inuql3a3qzxStISTyb74cxBlL2BNxDFc/SGuTTZ8YHXX2+zLrxspEdx/dDE8gh0imVpASw==","shasum":"0d3efd2c9ec6b92354f087ce5d3c7ee0671542da","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.5.tgz","fileCount":34,"unpackedSize":29810,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA7UYZiuRlLf2odWekv0cu2BrgEzAX7t8VnIGDrYCtWmAiEAo5HWqBh139pzRVD5q8PQ6H8zAciTWAyprvx2wIGu/ao="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7JKoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8SA//QH67yg0a7Xk8Wdt7hN9xr4SfNEls91sMlqzfSlvLSN2Fyc8O\r\n8maUhsePU1sn1JLIy8+gEIBcsxqvbsvTYNMQ1Nha6aaKBBuhJ+aEUseiAoY6\r\n/kOQvdzLUFZ+Ra7KlUsM1ZqwV58Z6UYRTObzLtZC0867sd8BD9tkX6sHHal0\r\naV+ds0xiTacKsxrQa0aIYHHN20Z2jw41SaojfF+JbtqUd99R4tS3SgQFiFpU\r\nDCFJvNJA71GnPMjvAEJx+aM5p4D0IpNNy268ongKrCqqGVtEItuhKumR9ba4\r\nFmmnKEiSZvkOKFb4MkcqSJLHzQq+bG+nHIRTXllNF10LBDgHtVTOu3uK5Kxz\r\nyTtbJOJFniCyLZ2LY0x0/E0QTTNNjFxzgHhcWN8HPA1+d5eSIhz8XeOAZeCW\r\nSZfw6PyoY+E1LDI987A0HTHk7McJrt2g/qfP9JKNyCGST2XTidWyRaO+MawK\r\n/8WLw/FMvdWArCgYUmX/tDpI4VoqFD19/hYzqz05/X71bXGBtmWk+ukK/rtD\r\nNHapaq8Ej46U+ZLgMVXYYqkTJhkhokV3p4kpw1J2NNKYkQlWPFgh/7wbp7Qh\r\nrMOGiO1ljMgk1TTPDnX7ftzIuWva5IVdJPDZEjucpIkHpAc2LTbpIMb/dfqd\r\ndnd0vaiNIffMCA5DJje5sze8HgpPxAFiOEw=\r\n=Bxv1\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.5_1659671208630_0.962550447971033"},"_hasShrinkwrap":false},"2.0.6":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.6","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.6","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.11.47","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.32.0","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.2"},"gitHead":"c2986857b6866e39943c624f08c7db1ace0c8dc4","_id":"capacitor-set-version@2.0.6","_nodeVersion":"16.16.0","_npmVersion":"8.16.0","dist":{"integrity":"sha512-z8djrY0tq4H8aBu5/4NKQ0X4KOCmYZp9ohsZgVhexh2H7uyed49JSsHGTNMBpep7e1e20TvyqdC71UUzDp1WYA==","shasum":"3ee3afcceee75ff2b9cab4313ddf1598784e5c2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.6.tgz","fileCount":34,"unpackedSize":29810,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk5RZl+DWpgjeVDsZU+Z5an+tg0qcQXovibp5md2Vu8wIgCSF0oP2Kk9mmp/wTjHRRc7+AMRddyDV+n7XcK9iVUBU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7KGTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo78A/9FC7g1nBnWhWoChzmxxkYY5K90OF17Xj0olCdcsrUWrRhlknJ\r\nU69ku/mDvO0qC8o3iJlF85EykwKlDhoLzSfqh8MSqqncYZDog0LtCKHq6X6V\r\nYyeuWSSIe3BBxTJAcM9a+bzRQgvvuSWTxM7qBJQBbUYLFuCkMGtOKA19Mwv6\r\ndDfL18YlzJdeZVuoRMNsF+1/vIuS/WKFGo/4rhiJTGaQcu51tXwNc4ShTl7Q\r\nN2lV5qUMQnUlfPqLp0Ro7GGAnOe7+2rBssLfiCPuu52b9Y2gCP0RPS/X5J/n\r\nxeB+eUducCyOEBLT1unOua+GhuXoVttUlMnoiBD6o29bgseEwHkZKVmkcGXb\r\njhN9MrvAX3sv+IfVvORRpnqTy6gBrK1BGAZCL0BToqQt0TmCN6aQbeAB/jYI\r\n6QrgAOs04OdDCh4M9WDsIbONciiufUxcGmchp+t5LC5qqSI+mawk/fMzIica\r\nbuXq93Hbil3ualcq+gA27Q/vcVKA0LHOjHtOukhkwmbsNmTkCt0q2oV62bIF\r\ngNXVjcXWMmO1tgkiAL3YpNiY5nPjNh/I5P8zmV239J+UDftv2IcaM9C/EBV7\r\nenSqc0wBU7QyfinU8ckiy9Twv7qIApwKbRz8hxurC0m0lp3jtVy3c2maCP8l\r\n8t+IBPHevdnR8YpSN/XU4tmm/elD3BA+cnQ=\r\n=g5rB\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.6_1659675027032_0.5115970685937801"},"_hasShrinkwrap":false},"2.0.7":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.7","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.6","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.11.47","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.32.0","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.4"},"gitHead":"4bf12280683aa8552742cc62b1a59000c3f460db","_id":"capacitor-set-version@2.0.7","_nodeVersion":"16.16.0","_npmVersion":"8.16.0","dist":{"integrity":"sha512-yraDZMjnKbDgoHzPQz4jkHMODspAHqA6htGJE2lMErmosWvYQVdWQKDw04JVL9x8VfdvEOaq+8x7kIAPx/mybg==","shasum":"2a6e7217dc1603c4e35739b83b5d65e949cb9d73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.7.tgz","fileCount":34,"unpackedSize":29810,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDMvez388mvdgbmFwi+PQq5Xbb9lzy0+6DJvX3n5OAxiQIgbfThGiFAyYhp+ZOeCTt7pOY+JUtqjZyEULhokq4XdzQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7KHTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJvg//cgj7nqKkeKI/1i3Trd66z1cSEU0kZlQWeBVkZ8jqaxBK+ppz\r\ngIFYABxu9wE/QY2DUK3Z/0K5CyW63zdycYlq0MzLctQCipAEq38XbYWz4wvy\r\nmk+3SsfmOX8/MbrhRaERse/GvuBcxnW9AvnecLj8tWfl2rnXuIQiWfbUiyIW\r\nGZwQYU4EXNd4ZF4VHcDyofHGOcGRgdFyCJe7Wt7MSqTbJznhxbZUG/tzOgL9\r\nkYej2OFKnptDednZK4botsJC89Pze6tLCE0JAkXoH8N6CwUltjTwuhRB2VZJ\r\nkEi1E3WSwo0Uf74j30b1KlBNgheZltnd1UU4pje5v7jNr21GxGAPHpZwpI4A\r\n1fjborZOo6tJwht8OYY9iAFHa4vbsKr9rOpY7Hckge6qDaE83XPnwTzYbpjD\r\nZerHRYy4KUJP2ww9oCpf3yzo6ItK1f1PggvXDObxLrYwmZ2fH5iNa0xgILRe\r\n7GoiUFoyKX06xIFotG6txdkq+D6SUOnEL99mhPOr3iuxTX+RBrewU+BjSxGT\r\ni1B0aKTY5ZIDiV0odRtkZLNL36ZKKaldmT56+iLPUfk1O+5/7aB3P5CVG5nW\r\nZJJUBWbUQvflEBq5g6pUyoo1Fe4Rz2GujjP/OOCyFopbnu+RPYcEV58CIO1i\r\nDVjMr2A/gGdcdiTgD0dO15czwMJgx5MK88k=\r\n=SCWY\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.7_1659675091675_0.7860804826614209"},"_hasShrinkwrap":false},"2.0.8":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.8","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.6","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.32.0","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.4"},"gitHead":"b8362a152193f2ae82a1636272660a41424ed8e3","_id":"capacitor-set-version@2.0.8","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-d4kbP2edNCONFwG3ARodtyv6Z/Q3blCYOEyq1fOpSDO460YTnLCsw8Gd4Vc4NKyFZvYNIG2oV3Rk0qd1EDu0sg==","shasum":"cf12740832687c74996c12e7bd4ddd63492ace6f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.8.tgz","fileCount":34,"unpackedSize":29809,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAVa2yG46+zWZ89NcbjY6z1k5BeWRaPVTEUE8d9CWWyoAiA1pRRTqd+wxE97SIzJcyUz1ECAE3RpRw+9pn0yglritw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkMQcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoL/w//UpcYprjEVRr/BDx3oKAI7mIZT+t/fIbXeZJb7MbqRMY9ns2F\r\n3TlnjR/85+wNY6fSah0qAUWpSa+vTg6q/3H4U9KQ7TzrCsY9JVHGCiiVEp4M\r\nLWpvvGr2rMc5LyvZ0pWyFhgTgxe/G0gbQWVtQ++K391Mh83RI+WIcJJ4FinR\r\n4mNA0mULiw3zpG4lN2kmtXnFCVEg0/9+NA+VEudhggmpdIOWAkA1MLKahIJo\r\n3TCiLq0vji+2rgHPYGExvFv7LiLu8pZlWk25Hn4PxkH2ofakoUsbtzmsd5ju\r\nbhp/uBvkdOoOzLXRTd/WxKvjbtOItA3eHhmD08tnFD1FAaRr3Cng41m94s0s\r\nCmiV8hcr+ncWSQ0kcaRGDGmtMHfZENj29Qi5ss8ThtHROMDOqxjBKhvDT1Qb\r\n+wjSnkNZi+JuPMuD31Ei8QFp9WtfTh0Z0saN2WxGuvhIQlvCM1usbW2fj7b7\r\nxY7YlLuYc8V0Rl1oaTPqms+kNpOW2B6JBMm4pU3M5gJXVPP7aDpyv2Za+Yx/\r\nHs/jaQ9AD/R4IaNLxLh1cKyqlP7p4zHKoTH4sKSHVILDnPuGOMIfra5s2lNI\r\n4TkdpWxC5W5D54LV9qPxBGYfYoOPwVh/34O1AAbx2+vE1eiZytdwgHuniGmm\r\nhFCStroMlsMqma093M7d658bw8NJUQlZPvM=\r\n=2SAZ\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.8_1670431772481_0.7316040568357369"},"_hasShrinkwrap":false},"2.0.9":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.9","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.6","semver":"^7.3.7","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.32.0","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.1.2","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.4"},"gitHead":"f875f3917c6269271f764638bb827231d174e632","_id":"capacitor-set-version@2.0.9","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-UuZPUwADBPTKV3Stn8cY6PiucpYbjjp3oRZ58nJXNo3H9ZRHjVy+w0x+WLXrx29P2RBglrw1hseQY++CRDuKoA==","shasum":"c88ffead3ff6836997e2277f4675ba1459fffd0f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.9.tgz","fileCount":34,"unpackedSize":29761,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICwXdMBTGiIdVYay+fWmlYgGTNKcy77Rl20FPN/wDojrAiBzh5+VZmszQ3QZm7piXuFNaD98Q+dM57nvACQPp7gDaw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkMaDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrALA/+KeSZiuH5r2XuY3U23ixQ3F5lWI02QfhK7oPmn6+YP4gjEp7k\r\nJN74iq/gJzHZUW7jUljb4y4k4unxovtRWbGeUnJHCh6ZDFl06svoy4yoNbMo\r\nxze1Drg9qMfhtO+vKXPTjXONB3HoHPxx+Ph8yJL1Ifzm/nxcCS76WNda87Z3\r\njLkPGgIM2X5tVczwXBRjzCvr2LypVdZ1oS5pDFp2hY7KnHuSFDjkTiMtCf25\r\npo+8O/GO4WmhqxjlbWoIUDJBGyUgGqeQc9zf0QhZ7WEAXKhA+5oO3snwCrPY\r\nCAJ5Otbtl4eiNGvMSXC97lwFUp+u8q4KSviJCPWcr+AjaZLqBCUDBF8/jum0\r\nCE+tZeRjWuHRn2+PF9uvMleb7ymPhPwIFRwf3jrCIaJUHE2fYu2mvPnDNvmo\r\nnoXzZP28cF5n5UvsGNEzqGU7Vg0JL/oUraejq67RgATeeNAz5aAn2OSjYL1V\r\nVbM1CvRYNPMi/Fqi4kbvhny86eo/+CgkdPp9sPinxtTv/E4E6fPA+fazwHV8\r\n32eW047ZmG4uQTuXtSiKjn9IxWunJU4tI/kQoYPzf+seErkLDtegEUJVJiwP\r\ntQosAZp/qOlgdIk7I+tV/LXLtLtyQ3P2//G4T5PQPU2wuAbtvRIN063yWizg\r\n89zshswxHQ4SCpSzDDB8sVWK4acg2cXqwZc=\r\n=YsCf\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.9_1670432387183_0.09787147302231225"},"_hasShrinkwrap":false},"2.0.10":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.10","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.0","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.1","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.2","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.7.1","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.4"},"gitHead":"18c8afc00af073973842e30fd022de1e76ec1da4","_id":"capacitor-set-version@2.0.10","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-BJI2ja1/BK9ARO2tVkJSNAmTAtR3yQkYqauKDmKYcWGqfBW2dzmn1CEzkiCJOvPGldSKeOmTqB15V/bblrwSPw==","shasum":"eb30dae2926b16898a619ba99b0c9a5ac698e81e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.10.tgz","fileCount":34,"unpackedSize":29763,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICNRDfKVp+OhgKiuDjEkYViPjob31ha338fg2CsPI2dEAiEAkWoiUn8qjpg2Uy34KIwvvl3Qj9h7ZYrnWtMNJ90atBo="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkMj8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFkw/8CK6wz140OIe2XAwMY5RfcgmKC81uNWOg/0utL5SCKH1fgD9F\r\nyqkdXC+gFEUINpCwfKmRwECwW+t0WWzg42LMor4Nl/kbdb0SYco5JLo0BcgD\r\nxNlmLN02ypx5GqYWfXkDGi4aAmgbdswJBBEmQyvzhNtPN8d68ZVhR447f44G\r\nTWgmcoXE9vWsvWdprl+UnV1UN8Yd2M0wnc9RppvP7d41raNgMoGW8Xt3oxkI\r\nZUsmNh4E3lg5Ns3sOs/+pC/SBEymCMhDCaa5ifkZI8ie7awTqN3bDQZGqvk+\r\nBps3Is8xAC2hmwy1fbVK+LMvIvaMfxUZRb8TyKY4smykaA33x/6p4aI4jo1i\r\ntRYDQLjSqFIrpKxGtTzh/glc1Jc64URuIpu5CRYb5VbGKEVUd5eD/rTD1xZe\r\nJKn+KJcTyHfiPnijkAGZq3FhzToixZCrYJrmDgeTEITMhQadyT86T12e/RVx\r\nZ3j/lcL5iIbclgscQUW2t1xPsA+p9gmmbHIN88G72QMdNEmPUQCZTbtVJlpX\r\nBVp8v5gS7dYyDJMVnfwKpJe4v/Bqt/qd4X3E+ZLaEWvPGJmbMQm5+8z8ATSF\r\ntHsUQPAVsHl2YaWGlNgwys/6w3X40+0arrLIGrUsDG9V0xyPj2A873wmh2YB\r\nPWV0IpG6UR6C6VjwNS976pGiQxRrHIqxkno=\r\n=mhiS\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.10_1670433020447_0.2690259684303278"},"_hasShrinkwrap":false},"2.0.11":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.11","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.6","@oclif/plugin-commands":"^2.2.0","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.0","@oclif/plugin-version":"^1.1.3","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.1","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.5","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.3","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.8.0","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.7.4"},"gitHead":"0d3a0c62f65b539e260b30dece0cc302d31ba670","_id":"capacitor-set-version@2.0.11","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-FW8Dula6dsMccoOZoi58k9GmhlFuYP2Mtl7duY7IuShnmvWK0Vnf5pfk4aj+Eui0vg87+Yu024kOZiR9UK0Gmw==","shasum":"de726ead9a5afcda2b39b60ff11ca3a2f3a2e65d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.11.tgz","fileCount":34,"unpackedSize":29763,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDS1A4Zw50/mpxy7CgiZcYIsjRogmMUDdxlqOI4TNQ/kwIhAOAI3n+UK+MdWG/MLV2v+zBQtbawNj33tCYhAxVFH7Hi"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkNFSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmod9A//VgSvGzTgWY2rZOuyKPoiyP/0PbVmTTCJORsT9CVhzcA0ppDh\r\n6TLLaiszonclkBaZy5ppbJTctcfqpFnY6cl3iNEr9XhVr0XYuBVOnd/TQtxE\r\nFztCKt8tErKmPFEC4MfiTHuvZwDhOCoTbMPlJQLhwzk+BM248bxfay76I+/e\r\nb7CLgsEj7nn8uhvDNluhoRmqlPUrGAT7hD+Uxc5zh1jYi9FrLJcoIL+Clmge\r\nuD5OEvXfV/eIuBktvDb3hn7BhDbTllWyRxXH/s6zD3bEG8smXGqNhR8R/vg1\r\ngz6i/iFjmjKp7GngbjutFqnXl8tfaAifWeMYa1nDfcjipmsrdBzZDMiwOQrN\r\nnM24JCL1WqKJixhgTfT+JC5fReSOi4ywu+3qJypqatUyoJjfxP1IOt5BzrEK\r\nUTUt3gbXOWLAgGxTTZYhrnA3tE6kkbcTioNf/hb+QM46uo12HHXDpiTF9X2s\r\nlkc6QUBXBmi2ln+mSEr78GB8/H5UpS3xaG8HAf311U1y+oTaxICo5H90G35B\r\nJOpQiZcigXE42wCa89c8nTB2sb+ea5SlTDTTbx0BoxxhM8BYIgVW5SV/GExF\r\n6b8VyLAIRd8Kge05ajK5SWNq1Vl1/LdNJWY0Tc1EHR7A0tinxVZaTFVv/N+q\r\nLVM6n4z898nNkiJlWumE585oVwBDObtQ3/E=\r\n=HyCH\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.11_1670435154199_0.6243342012932602"},"_hasShrinkwrap":false},"2.0.12":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.12","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.6","@oclif/plugin-commands":"^2.2.1","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.7","@oclif/plugin-version":"^1.1.3","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.2","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.7","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.3","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.8.0","semantic-release":"^19.0.3","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.9.3"},"gitHead":"70568d93b83c6b0d18e7c67ca0ea45d3433a752f","_id":"capacitor-set-version@2.0.12","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-o8jB3r1JuznTvHN5Y9w5xZXfLX/ZGYfjAPWrovFEFJCQKnalH84uBDQBBsQVU1g7POKBgTgE0wmHknnaVKg85g==","shasum":"b2f6fc24086d02799021935cc630edbaa8a1146e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.12.tgz","fileCount":34,"unpackedSize":29755,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTyQQmndE3hM9/nkjrz0QD9I9NFdGvw2kbj7MRy/UheQIhAJHxc4qdi3n+PEf5OEtyH5JeyUfn0gLxxTzlfzRPB6TM"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkNprACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqInA/+MQ2cXk1eeEZrRmokXKpm79mtwZO/s54E7Z4OoU7fwaqlHgkn\r\nEJLND4hXD7bNK7IZAIU7z4+2kWQ5RDA49aw9yoV959DrorJh1QHf+o4ND0I9\r\nYEIQXZGRXAcBfah/7V4YtAfDEGXTZpoqFPlQ1Nbel5WIOnfAc/SB+dhGwPtY\r\n5A5C33En0xO6gOCOCWNoe+qnlzjRtt0Vr2PVaicR96y9IfsEl28n3ujUOCTJ\r\nIv8mrkUVV0GRDCgx0zk6fBrBxleDgZF1HoKOgS5lkSsdNu2kmZ4xbEA9VuOx\r\nz5b7V/30cngS2tgqYa12q15uyyXJqLZ2tBCiYlvXeVFRABqvyY3Ajovy6re0\r\nuxvRbhBCeIsSnx58SW7LejmDgv8r0RfsfU/zZ+SNfiGVt/IHanx6LdZAgF1d\r\nA9vZjDURaPnEa6HAQvNqpKndCzBkeNN7haffLM/eNY9hruBrEoIVM22VoqmI\r\nT3NK2BxZA6cupYCWfPNovxPniil+rLCHgftCdFIqW80a1h2bXCneVXLQEDTf\r\n3I91m/AJ+RBhaMrH2LNuNVImGyiE8gWPDJvV3Qf09BfhWorPVh0K1Xk/NtKL\r\n5r/ufKpWqyfmwjoAfFPLH7hvKSp7qZMUDXNsO2phRfEFdFL+oNh8x/4THHFM\r\nOXV5u02mwxgAKpIM4IhalJ/6ba7OxwsRO7s=\r\n=pbtj\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.12_1670437483079_0.5635734981099212"},"_hasShrinkwrap":false},"2.0.13":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.0.13","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.6","@oclif/plugin-commands":"^2.2.1","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.7","@oclif/plugin-version":"^1.1.3","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.2","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.7","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.3","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.8.0","semantic-release":"^19.0.5","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.9.3"},"gitHead":"0299b754d8b1d12aa2f0b28b09e2f42d7a2ad657","_id":"capacitor-set-version@2.0.13","_nodeVersion":"16.18.1","_npmVersion":"8.16.0","dist":{"integrity":"sha512-aP+2NbMnescKWZUyS8EKdZ1eraBB8qW+LOnJrH/cNMX1rhs7tKnwOJ4MUwp4c5KH0e3vkUqrHeRX9bCYmclWOA==","shasum":"044c19bf9b13b4419ad29edebd3ac62f55733995","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.0.13.tgz","fileCount":34,"unpackedSize":29755,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAmn+xD3lO26r6HF6oQ6ve3yfV7YmAtrrSg3d95i71vAIgILQVMDOSgv69CjD/kUKY7gjTvGjbEprdH4nKcGLmkdQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkN0RACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMTw/+JRrJ9jA2vqtA7v5Z2cNAOYv/gyRPdoa3SKcM8EELabmT87wi\r\ndYnNrpv0ErbIxEvdi+i2daIHjQ0tHzxKyBRBKR/Y7QYF16mWak/RcuIJ51qh\r\nP2f8NcJi1w3rgxkMBaqXn2fY9O3+vLMqNeBfAFFUgKmDgg3ptbSPIgGf86rN\r\ngLlC7BXYkNZO0ObWnNYpLzRlxxcmDCfldUcNvPqgL1fDSQBdg0Oa2qf5ugwp\r\njXoQoDVDLozJjIt0FEmw6DaoECcCOIHhdes8Ibr33lGTxKDkQJhR0W6gGHv2\r\nj41/QsZYkjoHMYM9NcvBM7dDZYYLyb+PFt9XLB4Hf/IJYovcRsINbEXrbX2I\r\nui+FGJhFKOXaeaEUR2+UP5SdjU9Q+0eyFPO01BkN3ci0zDFk+TQZwyIPrUeJ\r\n3cOP6by5fmHOR9Mx8csJBpH6FoYcfTbyZ3Burk+RrKoaJbzkpgMi3BlxJoAs\r\nZBeIugyuPxttf61P0tbKsFGMGb53tkkNUFAfazkBW8VBhyM6qXZ6G41DAbrO\r\nNfin+DvQ3HYEB6UR+Hz1N/RFwcK3AZ0MIwxtrVMOihH954Y03RT8C5x6/oU7\r\nyyToB1MmVR/Vdy1l4GUoEN8jmTOSWPwNJ7BMR1F3aSlUrY1AojrbQ9IQgh6B\r\nE+G/TXA3Nns/WXWy0u8HmUlhFWYjoHxVC4w=\r\n=5xBf\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.0.13_1670438160844_0.46046920392337687"},"_hasShrinkwrap":false},"2.1.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.1.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.6","@oclif/plugin-commands":"^2.2.1","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.7","@oclif/plugin-version":"^1.1.3","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.2","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.7","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.3","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.8.0","semantic-release":"^19.0.5","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.9.3"},"gitHead":"a2114c188e53881f33c9bfc63bedfa2621f68d70","_id":"capacitor-set-version@2.1.0","_nodeVersion":"16.20.2","_npmVersion":"8.16.0","dist":{"integrity":"sha512-PpLlRTsixg+Lyg50ZY8mCg9YW8A10fvi/4O4GID45hdF3iZrcS7de8J79gHT/dUANpAO6qxbKh0a9D3wpcbVjA==","shasum":"3c6961113bd1bc9d8d106852e98a20ca46f7dcf4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.1.0.tgz","fileCount":34,"unpackedSize":30068,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCW5L3rky4HnqqoiD1J56dhrkdgs+fTaXzX5prz4Tx0qQIhAKJiAKQ/T5qbmpdGj+IVjnZE/cevifptdXNiH4AfmU+H"}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.1.0_1695783752891_0.056005014082446625"},"_hasShrinkwrap":false},"2.2.0":{"name":"capacitor-set-version","description":"Write version number and build number for Android and iOS on ionic/capacitor projects","version":"2.2.0","author":{"name":"Hausenn @HausennTechnologies"},"license":"MIT","homepage":"https://github.com/HausennTechnologies/capacitor-set-version","repository":{"type":"git","url":"git+https://github.com/HausennTechnologies/capacitor-set-version.git"},"bugs":{"url":"https://github.com/HausennTechnologies/capacitor-set-version/issues"},"main":"dist/index.js","types":"dist/index.d.ts","scripts":{"build":"shx rm -rf dist && tsc -b && rm tsconfig.tsbuildinfo","prettier":"prettier \"**/*.ts\"","eslint":"eslint . --ext .ts","lint":"npm run eslint && npm run prettier -- --check","postpack":"shx rm -f oclif.manifest.json","prepack":"yarn build && oclif manifest && oclif readme","test":"nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"","version":"oclif readme && git add README.md","prepare":"husky install","release":"semantic-release"},"keywords":["capacitorjs","capacitor","version","android","ios","ionic"],"engines":{"node":">=14.0.0"},"bin":{"capacitor-set-version":"bin/run"},"oclif":{"bin":"capacitor-set-version","dirname":"capacitor-set-version","commands":"./dist/commands","default":"set","topicSeparator":":","topics":{"set":{"description":"Set Version and Build Number for Android and iOS projects"}},"plugins":["@oclif/plugin-help","@oclif/plugin-plugins","@oclif/plugin-version","@oclif/plugin-commands","@oclif/plugin-autocomplete"]},"dependencies":{"@oclif/core":"^1","@oclif/plugin-autocomplete":"^1.3.6","@oclif/plugin-commands":"^2.2.1","@oclif/plugin-help":"^5","@oclif/plugin-plugins":"^2.1.7","@oclif/plugin-version":"^1.1.3","plist":"^3.0.6","semver":"^7.3.8","tslib":"^2.4.0"},"devDependencies":{"@commitlint/cli":"^16.3.0","@commitlint/config-conventional":"^16.2.1","@oclif/test":"^2","@semantic-release/changelog":"^6.0.2","@semantic-release/git":"^10.0.1","@semantic-release/github":"^8.0.7","@types/chai":"^4","@types/mocha":"^9.0.0","@types/mock-fs":"^4.13.1","@types/node":"^16.18.4","@types/plist":"^3.0.2","@types/semver":"^7.3.10","@typescript-eslint/eslint-plugin":"^5.45.1","@typescript-eslint/parser":"^5.45.1","chai":"^4","eslint":"^7.32.0","eslint-config-oclif":"^4","eslint-config-oclif-typescript":"^1.0.3","eslint-config-prettier":"^8.5.0","eslint-plugin-prettier":"^4.2.1","globby":"^11.1.0","husky":"^7.0.4","mocha":"^9","mock-fs":"^5.2.0","nyc":"^15.1.0","oclif":"^2","prettier":"^2.8.0","semantic-release":"^19.0.5","shx":"^0.3.3","ts-node":"^10.9.1","typescript":"~4.9.3"},"gitHead":"1255fbf644dae20a0543cd8f6c70962fc44e974b","_id":"capacitor-set-version@2.2.0","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-CMWFFA8BxSRQDOCmSjqpZenxdMpRDvLRZLQfpO3958JTjE9+4G9o97Okmqpu2t26KVs8MHoDWjDy5hxD8EigSw==","shasum":"eda7f1f273c1bfc3ee0f07011a18a77eaecaa71c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/capacitor-set-version/-/capacitor-set-version-2.2.0.tgz","fileCount":34,"unpackedSize":31194,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHgU8d/ohbgSEJa7SXNpE9FLJTF4bDT9d4bDwGMTSn6mAiB8Gb3UwiCCsyA+QIcKq2GiFILk6C5EogdtfWV0FTLaew=="}]},"_npmUser":{"name":"deployment","email":"david.m.krepsky@gmail.com"},"directories":{},"maintainers":[{"name":"deployment","email":"david.m.krepsky@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/capacitor-set-version_2.2.0_1695784484106_0.02191595254084544"},"_hasShrinkwrap":false}},"name":"capacitor-set-version","time":{"created":"2021-04-08T20:47:21.358Z","1.0.0":"2021-04-08T20:47:21.540Z","modified":"2023-09-27T03:14:44.510Z","1.1.0-alpha.1":"2021-04-09T01:32:43.891Z","1.1.0-alpha.2":"2021-04-12T00:25:01.396Z","1.1.0-beta.1":"2021-04-12T00:47:42.695Z","1.1.0":"2021-04-12T00:51:45.850Z","1.2.0-beta.1":"2021-04-12T03:28:29.101Z","1.2.0":"2021-04-12T03:30:52.448Z","1.2.1":"2021-04-13T18:40:15.263Z","1.2.2":"2021-04-13T18:44:05.736Z","1.3.0":"2021-04-13T20:03:47.468Z","1.3.1":"2021-04-15T16:49:37.907Z","1.3.2":"2021-04-16T11:02:26.486Z","1.3.3":"2021-04-23T11:25:30.269Z","1.3.4":"2021-04-26T12:01:04.501Z","1.3.5":"2021-04-26T12:05:57.119Z","1.3.6":"2021-04-27T11:34:19.657Z","1.3.7":"2021-04-27T11:35:54.808Z","1.3.8":"2021-04-28T11:16:24.570Z","1.3.9":"2021-05-05T17:40:06.288Z","1.3.10":"2021-05-05T17:40:56.491Z","1.3.11":"2021-05-05T17:43:19.685Z","1.3.12":"2021-05-05T17:44:32.180Z","1.3.13":"2021-05-10T11:38:53.529Z","1.3.14":"2021-05-10T11:39:32.922Z","1.3.15":"2021-05-10T11:43:54.275Z","1.3.16":"2021-05-10T11:44:42.505Z","1.3.17":"2021-05-11T10:10:10.447Z","1.3.18":"2021-05-14T10:19:47.509Z","1.3.19":"2021-05-17T11:25:33.776Z","1.3.20":"2021-05-18T10:56:47.856Z","1.3.21":"2021-05-20T07:42:33.602Z","1.3.22":"2021-05-24T11:27:26.319Z","1.3.23":"2021-05-27T11:41:12.765Z","1.3.24":"2021-06-04T11:41:09.893Z","1.3.25":"2021-06-07T11:27:55.032Z","1.3.26":"2021-06-14T11:31:48.303Z","1.3.27":"2021-06-19T16:12:55.292Z","1.3.28":"2021-06-19T16:29:20.519Z","1.3.29":"2021-06-19T16:33:48.363Z","1.3.30":"2021-12-15T15:36:36.170Z","1.3.31":"2021-12-15T16:24:40.070Z","1.3.32":"2021-12-15T17:41:58.005Z","1.3.33":"2021-12-15T18:01:51.986Z","1.3.34":"2022-02-08T11:55:13.516Z","1.3.35":"2022-02-08T11:55:47.109Z","2.0.0":"2022-05-18T15:09:07.405Z","2.0.1":"2022-05-25T02:45:58.856Z","2.0.2":"2022-05-25T03:12:38.045Z","2.0.3":"2022-05-27T17:55:17.066Z","2.0.4":"2022-08-05T03:42:23.130Z","2.0.5":"2022-08-05T03:46:48.846Z","2.0.6":"2022-08-05T04:50:27.205Z","2.0.7":"2022-08-05T04:51:31.871Z","2.0.8":"2022-12-07T16:49:32.650Z","2.0.9":"2022-12-07T16:59:47.380Z","2.0.10":"2022-12-07T17:10:20.620Z","2.0.11":"2022-12-07T17:45:54.367Z","2.0.12":"2022-12-07T18:24:43.220Z","2.0.13":"2022-12-07T18:36:01.005Z","2.1.0":"2023-09-27T03:02:33.056Z","2.2.0":"2023-09-27T03:14:44.288Z"},"readmeFilename":"README.md","homepage":"https://github.com/HausennTechnologies/capacitor-set-version"}