{"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"keywords":["teamcity"],"dist-tags":{"latest":"0.1.14"},"author":{"name":"Aaron Forsander"},"description":"Generate TeamCity service messages.","readme":"# TeamCity Service Messages\n\n[![Build Status](https://travis-ci.org/pifantastic/teamcity-service-messages.png)](https://travis-ci.org/pifantastic/teamcity-service-messages)\n\nFrom the [TeamCity documentation][tcd]:\n\n> If TeamCity doesn't support your testing framework or build runner out of the box, you\n> can still avail yourself of many TeamCity benefits by customizing your build scripts to\n> interact with the TeamCity server. This makes a wide range of features available to any\n> team regardless of their testing frameworks and runners. Some of these features include\n> displaying real-time test results and customized statistics, changing the build status,\n> and publishing artifacts before the build is finished.\n\n## Installation\n\n```shell\nnpm install teamcity-service-messages --save\n```\n\n## Usage\n\n### Chainable API\n\n```javascript\nvar tsm = require(\"teamcity-service-messages\");\n\n// It doesn't really make sense that it's chainable. WHATEVER.\ntsm.testStarted({ name: \"my test\" }).testFinished({ name: \"my test\" });\n\n// You'll more likely use it like this:\ntsm.message({ text: \"Finished step 1\" });\n\n// Do some stuff.\ntsm.message({ text: \"Finished step 2\" });\n```\n\n##### Output:\n\n```\n##teamcity[testStarted name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']\n##teamcity[testFinished name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']\n```\n\n#### Methods\n\n[Full Documentation][tcd]\n\n- `blockOpened`/`blockClosed`\n- `buildNumber`\n- `buildProblem`\n- `buildStatisticValue`\n- `buildStatus`\n- `compilationStarted`/`compilationFinished`\n- `enableServiceMessages`/`disableServiceMessages`\n- `importData`\n- `inspection`\n- `inspectionType`\n- `message`\n- `progressMessage`\n- `progressStart`/`progressFinish`\n- `publishArtifacts`\n- `setParameter`\n- `testFinished`\n- `testIgnored`\n- `testMetadata`\n- `testStarted`/`testFailed`\n- `testStdErr`\n- `testStdOut`\n- `testSuiteStarted`/`testSuiteFinished`\n\nIf you want the messages returned instead of printed to stdout, you can set `tsm.stdout = false`.\nThe API will no longer be chainable, but instead, each method will return its generated message.\n\n```javascript\nvar tsm = require(\"teamcity-service-messages\");\n\ntsm.stdout = false;\n\ntypeof tsm.message(\"test\"); // string\n```\n\n### Low-level API\n\n```javascript\nvar Message = require(\"teamcity-service-messages\").Message;\n\nvar message = new Message(\"testStarted\", {\n  name: \"my test\",\n});\n\nconsole.log(message.toString());\n```\n\n##### Output:\n\n```\n##teamcity[testStarted name='my test' flowId='65345909446478' timestamp='2013-12-19T19:54:24.449Z']\n```\n\n## Changelog\n\n- `0.1.12`\n  - [#22](https://github.com/pifantastic/teamcity-service-messages/pull/22): Add TypeScript type definitions\n- `0.1.11`\n  - [#20](https://github.com/pifantastic/teamcity-service-messages/pull/20): Fix reporting 0 as empty string\n- `0.1.10`\n  - [#17](https://github.com/pifantastic/teamcity-service-messages/pull/17): Add testMetadata method\n- `0.1.9`\n  - [#16](https://github.com/pifantastic/teamcity-service-messages/pull/16): Export inspectionType and inspection functions\n- `0.1.8`\n  - [#15](https://github.com/pifantastic/teamcity-service-messages/pull/15): Escape only characters specified in teamcity docs\n- `0.1.7`\n  - [#13](https://github.com/pifantastic/teamcity-service-messages/pull/13): `escape` now returns '' for `undefined`\n- `0.1.6`\n  - [#12](https://github.com/pifantastic/teamcity-service-messages/pull/12): Added global option to disable automatic flow ids\n- `0.1.5`\n  - [#10](https://github.com/pifantastic/teamcity-service-messages/pull/10): Fixed timestamp format: removed 'Z' at the end\n- `0.1.4`\n  - [#9](https://github.com/pifantastic/teamcity-service-messages/pull/9): Correct unicode padding\n- `0.1.3`\n  - [#7](https://github.com/pifantastic/teamcity-service-messages/issues/7): Single attribute messages\n  - [#5](https://github.com/pifantastic/teamcity-service-messages/pull/5): Added `buildProblem` method\n  - [#6](https://github.com/pifantastic/teamcity-service-messages/pull/6): Minimized npm package via `.npmignore`\n  - [#4](https://github.com/pifantastic/teamcity-service-messages/pull/4): Updating documentation links to TC8, fixing codestyle\n- `0.1.2`\n  - [#3](https://github.com/pifantastic/teamcity-service-messages/pull/3): Allow timestamp to be overridden.\n- `0.1.1`\n  - [#2](https://github.com/pifantastic/teamcity-service-messages/pull/2): Moved `nodeunit` to `devDependencies`\n  - [#1](https://github.com/pifantastic/teamcity-service-messages/pull/1): Mention repository in package.json\n- `0.1.0`\n  - Chainable API\n  - `Message` class moved to `Message` namespace.\n- `0.0.1`\n  - Initial release\n\n## License\n\nCopyright (c) 2013 Aaron Forsander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n[tcd]: https://www.jetbrains.com/help/teamcity/build-script-interaction-with-teamcity.html\n","repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"users":{"derflatulator":true,"knksmith57":true},"bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"license":"MIT","versions":{"0.0.1":{"name":"teamcity-service-messages","version":"0.0.1","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"license":"MIT","_id":"teamcity-service-messages@0.0.1","dist":{"shasum":"df1f8b0190183a6219faf88d39d7d08259b44f95","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.0.1.tgz","integrity":"sha512-ludQqKSQ4YKSfCadnHkXpK0AjZYc7hsbDJmHz9O1uUeTw5oX8Ng+cdf6YHatJGp/01QGr5D6jlHBxVFK7qKk4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDIHA8Xw+M0WchxpoXZYAbaB+z3W03x05qycwh0S7uu2QIhAIkcRsN7PDsuCQY1IYrrIi3YYNIlxXvGG0JH8pZ+ZQ2P"}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.0":{"name":"teamcity-service-messages","version":"0.1.0","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2"},"dependencies":{"nodeunit":"~0.8.2"},"_id":"teamcity-service-messages@0.1.0","dist":{"shasum":"d5c47b68dac3a3b77021261fea1791485046436b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.0.tgz","integrity":"sha512-BtYWFkLmHU2avAaR4Q/C6HWWXPHzqGDEoNwDo2UoPhERkPh0rA5gd3jeMULiDXUAMGLRU+VCr7Kk2m3SmvJq8Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8V//rhzEjDjVGpQ2+GacVWhXqDMdP8BQxpckK497BEwIgDi1fEYMSPzq3SbG7mxcw8AiX1jE+ZHRZEksI8WVTQdI="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.1":{"name":"teamcity-service-messages","version":"0.1.1","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"https://github.com/pifantastic/teamcity-service-messages"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages","_id":"teamcity-service-messages@0.1.1","dist":{"shasum":"3d117ba2a99c05dfafd2c150bf143146d604a9ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.1.tgz","integrity":"sha512-inCDxoeo7KQXxoYUzotdxU71gQ3eumHfgt9QxPSSgcRlbRiVUDSjNK4NLRnuBu2jxFNNdxHSJHY89yEWCK0UfQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2cHzgVv0krEtPN7AxtilCkQnQx7ivGzHXlGTMz1lM3wIgTaF6E9qxCr6/9JOARw0OgY0XPym156adZ5yM5QzHlP4="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.3":{"name":"teamcity-service-messages","version":"0.1.3","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"https://github.com/pifantastic/teamcity-service-messages"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages","_id":"teamcity-service-messages@0.1.3","dist":{"shasum":"7b5387e021d867cc1ff7400593da6688079d8a94","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.3.tgz","integrity":"sha512-MbrzXD7kGQMsmZ8H4nmP9Y35ViMKg014dKZ1TpvQG/6rM4Io2XFEvzTicDcYjGDCiRRePZN2sKl+FChuI+jAiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCaZJLCZoHeCeT+LnjuRpxsrTDg4bDLgSKtpWWaSHCp4gIgbT1xEGMCmZAZjKHzB1rxLMgGqNLFgZ/z0hhwyZWBM28="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.4":{"name":"teamcity-service-messages","version":"0.1.4","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"https://github.com/pifantastic/teamcity-service-messages"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages","_id":"teamcity-service-messages@0.1.4","dist":{"shasum":"e6dff11c340abddcbe85d85d8a3773b6e13f05bb","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.4.tgz","integrity":"sha512-z0WAQQV8WYWXxXtjtHXLFTc7nots4RM2K7pq13WxCsPCPG0okumG3X3BqVUIvIPfcQjy/gdl7V1RGXg7g5SjkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdaok7VlAa60cAqryLRDnhU4RehgrVWz/BIErBdMJd1wIhAKq/iRTskg0tuPVqdLKaFLdvAvn9SOo4Om604Tni9p6Q"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.5":{"name":"teamcity-service-messages","version":"0.1.5","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"https://github.com/pifantastic/teamcity-service-messages"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages","_id":"teamcity-service-messages@0.1.5","dist":{"shasum":"392ca09888089bde172ac864dc0c66b4dc6f56aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.5.tgz","integrity":"sha512-Jei7Z0orda1YYnJuv+5ePKnyGdYdVV+ebUpgcCT3FNQUdCTmebm+Q9i+zWagxLWdgan7n2x4Z6qIazbkCLQ7qQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDrzShznIf2mlSl8w4Qge+R7KR2sjuw1GruyNB+1dUudAIgQVinCNNhjgEea3hJGhYoseaMMrXpvBfBKPaypNMm9oE="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{}},"0.1.6":{"name":"teamcity-service-messages","version":"0.1.6","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"https://github.com/pifantastic/teamcity-service-messages"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"77b8dd3d005178564d69fe84b3a36eb2ff3d2ccd","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages","_id":"teamcity-service-messages@0.1.6","_shasum":"b6a350a5cdee0de08d02c4e9b97b8a774ea00a58","_from":".","_npmVersion":"1.4.13","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"dist":{"shasum":"b6a350a5cdee0de08d02c4e9b97b8a774ea00a58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.6.tgz","integrity":"sha512-QkSdeXxYDoPgrcqyfbEjSdSBBD/t0J20RHoXV1r4bi0/dZfHYcluQI0oiZH4a3dyuoc1rD2SlrlfdO32o+FjbQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5amAYlysYRtUVp7RD9q3s29KrnvBbRQNrXek/Tjj/qAIgTlVFbfndeUUB/JFt+fUAhKA1h3nZbSXIByx6bKuB0oI="}]},"directories":{}},"0.1.7":{"name":"teamcity-service-messages","version":"0.1.7","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"5fbb2cc68114f64e8d8bc7ffa0fd004ba4ef5c3e","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.7","_shasum":"e1dfbc4ba0c914086138f29793a47f91845c71aa","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"dist":{"shasum":"e1dfbc4ba0c914086138f29793a47f91845c71aa","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.7.tgz","integrity":"sha512-uGvsApM6veMs1bXWYBaWmQDrm+/txeQA7OCY8GA+Pgj1/pnEmGfW7IGWdtuokb5lIC45DGjQHHPaPLiK8M6xTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwZgBXZPiMMzhIp6YqupDe6dyipWyDhTwnTBfWAS0a6gIgTMglyjE5D5eV1y7HnBWaCjPWCk8zMrPtPOYHnA+KtYQ="}]},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/teamcity-service-messages-0.1.7.tgz_1457543960274_0.056195709854364395"},"directories":{}},"0.1.8":{"name":"teamcity-service-messages","version":"0.1.8","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"e4cccdda8d992c25555680f07ba4f27c85823a22","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.8","_shasum":"1b0d1c929d3de6c88cdb4482998d2c1143f0efb3","_from":".","_npmVersion":"2.15.3","_nodeVersion":"4.4.3","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"dist":{"shasum":"1b0d1c929d3de6c88cdb4482998d2c1143f0efb3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.8.tgz","integrity":"sha512-Emplg/vfiELbgqA2kx6KJrRdksGuJ1dKg3CzUBosl5Y2MEKflmWDgsukg6sTu7ILwJ4sxivDoMP0dGNub1Dinw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDU5EsEsS6ieBexB5apkTJu5d3zCRXCsVAClap8eSbmgAiBg0DCfJns7/QQh9uWV3KpZJmZnahd02H6yE3LQzqmaDA=="}]},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/teamcity-service-messages-0.1.8.tgz_1466782945539_0.21993204182945192"},"directories":{}},"0.1.9":{"name":"teamcity-service-messages","version":"0.1.9","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"5215655135dd53bfcc221f3e170e41b7eab82fb8","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.9","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"dist":{"integrity":"sha512-agmBUllpL8n02cG/6s16St5yXYEdynkyyGDWM5qsFq9sKEkc+gBAJgcgJQCVsqlxbZZUToRwTI1hLataRjCGcw==","shasum":"bb700cf2e15cac6ad244cb2f0bb3cc9d6da7ba2d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.9.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDs5Zq1aBZku+xIlwOY+8FGTAUz6CQyZlExxEH/bUYsNAiBvGuE6/KuF46zN4yoigwwA1k8AGLZbzrbcQvO+uuq15Q=="}]},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/teamcity-service-messages-0.1.9.tgz_1510117365407_0.5598281589336693"},"directories":{}},"0.1.10":{"name":"teamcity-service-messages","version":"0.1.10","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"5e0d45fc89b3cba9912e8487de889c5442aba24f","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.10","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"dist":{"integrity":"sha512-CdpMw9RPc8v/Vv3tzx8Bo1EQxNWs4toE/KtYRE8uDxr67vh9asTd3WRHI/y0VB7fZho2NGSuvecVjzl2BULFEQ==","shasum":"30efd4057fc4943b045e5d1eee8c09449ec76164","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.10.tgz","fileCount":5,"unpackedSize":10818,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcs2auCRA9TVsSAnZWagAAQAcP/RAhKXlPwYC2F//LdmVn\nZWkvjJCv/5c50r9nUQRVadqpMvS7txEMqhezF+UAm3MtZQYRFLL70tiPbA+m\noZ9swfJdvKbBYsTWjDD0PVhOFpZqGZV0dd8S9t+JNedgLlK6g66FBhQ3xZhe\nnZSUhc8ATA6CQTiIJDcY3xvcqyQ4MHEhglsYpJK2rp5exI18/Sz3XsXUDK8L\n3sTEeIyrRla9b6Mo7eubm/Njo4Ln5/0BAA4GiI1oZ2y9HrSurgTfaKN6VS3o\na+SGDFd23RDCO7J6TwSdH6mth19q8c0CrKvCtlmq7L2qLvy7KdG9/SND0+L0\n0Ah4hjthwI1+V6x7sOOzH+nh+s6nseMJZsGmPc7u+XooCTLrICKThYLVw28k\nLOqTMHxpV2Q66PMthwxmneWt1DQ2z61Mf0tZdcCeaQSWkbSMcuSgt8g4WlKq\n7TjhcxyTnjNpyl6RvRLf7zm/TwmnnPrpvYV5giEdT5VZgrLn7gJKd4t3YgbB\nOoXVugX6nEeRnICiAcm427OW6iZMWsPdkfcY8c8Vd1NPO3l3rrI6Oy9eSYaL\n9cVxZ89uLLIKddY2ML4u+5jwjjENca603hYzqg5QX8os9fDnxfXOvQkvw4EM\n4zoAUHOpeL0UaDeaSzr7bKjx8BeNSHlAN1Mp10cMbd0NAkc9yaj+1uTg5tKs\nq6UD\r\n=C/6C\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCRqTwZ1nPFjWi9n0veejITUd5gqAIVxFl0LQze9RvtvQIgIzApf1ytPkR06ulu6Ev6JftjE28lz3+UbnI31TE0EMw="}]},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/teamcity-service-messages_0.1.10_1555261101575_0.6068787146787671"},"_hasShrinkwrap":false},"0.1.11":{"name":"teamcity-service-messages","version":"0.1.11","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-contrib-nodeunit":"~0.2.2","nodeunit":"~0.8.2"},"gitHead":"1178fa27a1558a4e697133953fbaaf70ba21679f","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.11","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-C1olucTOnOMocG1gcDquHugZC4RHrVNvjPX/ZEZfjbo9DYALqUEBGHpmgigX/KA37E2dSopA9JB6Tfj07QV4YA==","shasum":"b5510677c2a85e0086de5c251ab3ab2f734425df","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.11.tgz","fileCount":5,"unpackedSize":10960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemyTRCRA9TVsSAnZWagAA8AsP/iJGBtnHZ0EDm23sgqsW\nop0C+OK7Dn1haK/oFWuQRMWgIbl8UJ1Jg/cgEE9po8+K+61fhiaM7+mWhUKI\npLu3b9Nh3OpOZhVlMdGV5BB+pcRtC3mYPFfV1yn7Bx7yKGnwKX8KMJCb1RBv\nrpZiqtJvZUupi7cOKMCCEH0FNfzL/c5X6yUrdq44O4kIcgSbBGpEyYQ9AX1b\n2pAoJZjuz1DFimJWiFCjSDIjK5o++f1s7KH35EkgbxkYgHlaNgc/EtUwlk+o\nZlRCpokwvCWo1gcvaaIa56RZtEvP9skJiFLENp7RjDvlarK2ANN0lyHwv1az\nRe/UZ4NKq5CU71ZxU9MwJDEDpoAf0YRoaDIEPXgafdLaFKwDGtYVIF6ba2EG\nR0bHUIxpb9deXeDwxnJUrLj/DZSeiDFnmgvejl8XjVnL+KgVKtDUm6pIFUTE\nAUXBasHgg6EnK/Cg4eemUz3EzgHN72wgd/bk5WZm5XgZXgR2XTUz0gsuOAJ6\nBv2YyBduAOEHh7Y29ylNuJ1tzFKaq6TRaBsgVzNswKun7UbUmqgw1oNX8Jpg\nymfms7JVrgxnUIJ5a6IAtcQG8efy1ImwfRuiNxxsvalj/qrnWknRpvzrYEZ/\nnx3oguQT2SjrjNNS/EqocLeZnHVm5dZ0lv1bALq+DZs1AttUeoPoUHJ7o6MI\nlDh6\r\n=CKeJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD8y3HFp1YSCSyWjFBNDBMm/jjxsm/ZbPIfeFzRCU5zPwIhAPmskr0V1rlxojC/ELJ282Nb+ftLnt2vHJ1BYjWp9Bcb"}]},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/teamcity-service-messages_0.1.11_1587225808974_0.6582054598212201"},"_hasShrinkwrap":false},"0.1.12":{"name":"teamcity-service-messages","version":"0.1.12","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"tsc && nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"grunt":"^1.4.1","grunt-contrib-jshint":"^3.1.1","grunt-contrib-nodeunit":"^4.0.0","nodeunit":"~0.8.2","typescript":"^4.4.2"},"gitHead":"055f2559af4000d856681d47813ff21a3e2541dc","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.12","_nodeVersion":"16.8.0","_npmVersion":"7.21.0","dist":{"integrity":"sha512-qHip+zg7/ZdZiK5OeSYxnxD3iUjPnVyRmnyNd+oB3XVTn5PQoEqydYspDmOFaFex3OlaAFaNl/VoNWttTgEqAA==","shasum":"5b62381fa9e91ea518ef3dc2c474bc7633c9fd6f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.12.tgz","fileCount":7,"unpackedSize":27625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJht1y8CRA9TVsSAnZWagAAXXwP/287CoKBPs8HR690bEx+\ncXamAAQxXD5zBTTalJ2px8xTwptKzMYrPbp42Xi83qRvNJ/b7d9b2CZ80b6r\n8+F2Hm5tRDXBOeaAPJ7ZxkGKq2Z02c+Su4IddnQ8A5xzVYg458URHKn8NntG\nXCoChd7XBqaqQxrrWP3GNFVe3M+UtCTN6iuaq+2+cJqp5XJo6GclqyKe/NfG\nOQFDuj8Y09FWXH7ToOO1kroMGK3JOx2aiyLYdpOoSq6npwK1RHkzGjRn459v\nTd0PM0melWGsdmhzWLtqbbb0/aJ9sePKWgNjY43oTpATIMoM6KJgu/HhhAtz\nLA0pxdnEsbvHs1a3rZ4zQo5dxamETJ4iVoxnUlLXIgnj09sqbagnSjSF8bqB\nJ1whRoBnPATjHGTIYFmmkIRNSIivDt7raXGHjPx/HNGMvGOhmGmfGYssyV/P\nPrZY9YtJ3z6nSutUWVPfN5sdw9qiYAdeFqp3BZUyxljAsBMHigosp+1uh6UH\n+Ve+B6ziWMXJgXT66h2VezAHEHeNfquBKbSowHG1EFA+fmGPoZsN58l4ZY6O\ntC2RDUMZsrrvKFmTu1v1vh1I/5buF5Qx+HzjCMIKbSUyg0Ecq6ljtsXtxPOY\nTcpJkUqs3FMPPryk7yoami/AkX2TlqCE82zjsYHqRABElCs79pljAX9v324d\ntPxc\r\n=j5vC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH+AbYM1TdSSTIYH4PAHhnCRF4kasuvAqoJ2Ca/FRgY2AiEAsEPU9Dlcpz0cvXYt+fbDwauz2dm+AK8srjYVHQ7P/jI="}]},"_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/teamcity-service-messages_0.1.12_1639406780011_0.6408922027926789"},"_hasShrinkwrap":false},"0.1.14":{"name":"teamcity-service-messages","version":"0.1.14","description":"Generate TeamCity service messages.","main":"index.js","scripts":{"test":"tsc && nodeunit tests"},"keywords":["teamcity"],"author":{"name":"Aaron Forsander"},"repository":{"type":"git","url":"git+https://github.com/pifantastic/teamcity-service-messages.git"},"license":"MIT","devDependencies":{"nodeunit":"^0.11.3","typescript":"^4.4.2"},"types":"./index.d.ts","gitHead":"2afe888d589adead5df0611a1420d711470c71eb","bugs":{"url":"https://github.com/pifantastic/teamcity-service-messages/issues"},"homepage":"https://github.com/pifantastic/teamcity-service-messages#readme","_id":"teamcity-service-messages@0.1.14","_nodeVersion":"16.13.2","_npmVersion":"8.1.2","dist":{"integrity":"sha512-29aQwaHqm8RMX74u2o/h1KbMLP89FjNiMxD9wbF2BbWOnbM+q+d1sCEC+MqCc4QW3NJykn77OMpTFw/xTHIc0w==","shasum":"193d420a5e4aef8e5e50b8c39e7865e08fbb5d8a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/teamcity-service-messages/-/teamcity-service-messages-0.1.14.tgz","fileCount":7,"unpackedSize":27526,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB1tQvdv+CL9r1jIcZ1ilOTvJ5c5s3wxZKuxR35HsSnQAiEApFK51ITZKwyqkJrtZ62Y3/6JBoT3AevTCaFoS01E4p0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaUWJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBjw/9F/Pz1M3hpcZRHnUbyIOYAvSigVJ8UuwNzx5Hnp9t8s3rklzc\r\n/8tVCRECxNCTudWFF6OFkev5tI/w/ZnsuA0cZtiG9S6ZOSq9NRpHfYq1Ha+M\r\nmWwI8Z9O10755hHnPPaXsDnuVkrBGvIkzGfX7va6tJVp2D3wziwPlJHoGf1m\r\nYpV13Sdy7yXIy7gH47ZCMctK5fNrVYSh8SeBcV+TiiBBBiYlQroWraP2mmOM\r\n9N+v3pwXOcL756Lqopo+hylusjuDBOKtz7FSkFCA9fn14Lt4EKCxyZHX5kTa\r\n+uwE29hZR6GUJzdbiiEDETAn5zUlVqLledwxOzHIFcvNA9HNQxTsZniut3I8\r\nRIZdcqmJ85gaq2o0Hmk4tm6ACICcExBQhDLr5PwtSvOnKdp3r4yhc78JCyHf\r\nnJD1RDlMSOrFgrbahYkl2goyMnyY8azhJlFti2jf1JiMD2wakSQ0gIi1ohp4\r\nPETARS1pUW8PzYvKxcrw6uDH50oZO44U9bpe2nHojVuEEUI3DDs1M6P8ZHog\r\nZ2NvQflPau3zm1rLoqZBLh17d5uVTASfWQX0V01fJngGvUMik2IpBsVV689N\r\nmsHmqGnLxpwQ3M3Bi1QfW/qoobI6/h935hZ0y9FEumd+Y0UTTYyuc28+GKdB\r\nlKFu8AUKfl5x/SpQLK4MAemzkHB9vd1sZ3Q=\r\n=/1AT\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"aaron.forsander@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"aaron.forsander@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/teamcity-service-messages_0.1.14_1651066248780_0.8553694091459354"},"_hasShrinkwrap":false}},"name":"teamcity-service-messages","time":{"modified":"2022-06-27T04:22:14.258Z","created":"2013-12-19T20:34:41.665Z","0.0.1":"2013-12-19T20:34:41.952Z","0.1.0":"2013-12-30T20:09:00.373Z","0.1.1":"2014-04-15T14:39:07.697Z","0.1.3":"2014-04-20T15:05:23.701Z","0.1.4":"2014-04-23T13:20:14.000Z","0.1.5":"2014-04-29T14:58:19.748Z","0.1.6":"2014-08-29T14:52:56.344Z","0.1.7":"2016-03-09T17:19:22.577Z","0.1.8":"2016-06-24T15:42:27.950Z","0.1.9":"2017-11-08T05:02:46.641Z","0.1.10":"2019-04-14T16:58:21.769Z","0.1.11":"2020-04-18T16:03:29.092Z","0.1.12":"2021-12-13T14:46:20.169Z","0.1.14":"2022-04-27T13:30:48.978Z"},"readmeFilename":"README.md","homepage":"https://github.com/pifantastic/teamcity-service-messages#readme"}