{"_id":"@userdive/agent","_rev":"46-0763a586747fda08e80304a9d79fd0e5","name":"@userdive/agent","time":{"modified":"2022-06-13T01:25:13.171Z","created":"2017-02-23T07:36:36.978Z","0.0.0":"2017-02-23T07:36:36.978Z","0.0.1":"2017-02-23T07:41:35.650Z","0.0.2":"2017-02-23T07:57:20.341Z","0.0.3":"2017-02-27T09:38:27.059Z","0.0.4":"2017-03-10T06:35:53.624Z","0.0.5":"2017-03-10T07:26:17.640Z","0.0.6":"2017-03-13T07:10:40.128Z","0.0.7":"2017-03-13T11:06:35.918Z","0.0.8":"2017-03-28T23:21:05.878Z","0.1.0":"2017-04-12T01:11:35.034Z","0.2.0":"2017-04-12T07:29:29.614Z","0.3.0":"2017-04-21T10:46:41.528Z","0.3.1":"2017-05-02T06:10:11.846Z","0.4.0":"2017-05-30T10:12:38.652Z","0.5.0":"2017-06-27T06:05:14.904Z","0.6.0":"2017-06-27T15:49:28.975Z","0.6.1":"2017-06-28T04:34:48.431Z","0.7.0":"2017-06-29T03:46:22.386Z","0.7.1":"2017-06-29T05:58:44.806Z","0.8.0":"2017-08-02T04:28:55.276Z","0.9.0":"2017-08-07T08:56:08.195Z","0.9.1":"2017-08-07T14:52:44.079Z","0.9.2":"2017-08-09T06:51:34.697Z","0.10.0":"2017-11-21T02:04:24.710Z","0.11.0":"2018-01-23T06:13:19.648Z","0.12.1":"2018-02-26T07:57:09.147Z","0.13.0":"2018-03-01T06:17:55.846Z","0.14.0":"2018-03-13T05:53:36.956Z","0.15.0":"2018-03-16T02:43:37.073Z","1.0.0":"2018-05-17T06:41:08.144Z","1.1.0":"2018-05-28T06:46:14.716Z","1.2.0":"2018-06-19T07:01:56.357Z","1.3.0":"2018-08-01T08:13:19.480Z","2.0.0":"2018-09-06T09:51:50.025Z","2.0.1":"2018-09-14T05:33:07.315Z","2.0.2":"2018-09-14T09:11:28.161Z","2.1.0":"2018-11-13T06:01:44.341Z","3.0.0":"2019-01-31T09:21:13.167Z"},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"dist-tags":{"latest":"3.0.0"},"description":"webpage tracking agent","readme":"<p align='center'>\n<a href=\"https://app.userdive.com/signup\" alt=\"USERDIVE logo\" target=\"_blank\"><img src=\"http://style.uncovertruth.co.jp/assets/images/userdive/logo-text.svg\" height=\"100\"></a>\n</p>\n\n# @userdive/agent\n\n[![npm version](https://badge.fury.io/js/%40userdive%2Fagent.svg)](https://www.npmjs.com/package/@userdive/agent)\n[![Build Status](https://travis-ci.org/userdive/agent.js.svg?branch=master)](https://travis-ci.org/userdive/agent.js)\n[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n\n[![Build Status](https://saucelabs.com/browser-matrix/userdive.svg)](https://saucelabs.com/open_sauce/user/userdive/builds)\n\n> Official USERDIVE module for webpage analytics\n\n## Table of Contents\n\n*   [Install](#install)\n*   [Usage](#usage)\n*   [Contribute](#contribute)\n*   [License](#license)\n\n## Install\n\n```sh\nnpm install @userdive/agent --save\n```\n\n## Usage\n\n### Basic Usage\n\n```js\nimport Agent from \"@userdive/agent\";\n\nconst agent = new Agent(\"projectId\", \"auto\");\nagent.send(\"pageview\");\n```\n\n### Custom Dimensions\n\n[docs](https://developers.userdive.com/docs/en/custom-variables.html)\n\n```js\nimport Agent from \"@userdive/agent\";\n\nconst agent = new Agent(\"projectId\", \"auto\");\nagent.send(\"pageview\", {\n    dimension15: \"My Custom Dimension\"\n});\n```\n\n```js\nagent.set({\n    dimension15: \"My Custom Dimension\"\n});\n\nagent.set(\"dimension15\", \"My Custom Dimension\");\n```\n\n### Send Event\n\n```js\nimport Agent from \"@userdive/agent\";\n\nconst agent = new Agent(\"projectId\", \"auto\");\nagent.send(\"pageview\");\nagent.send(\"event\", {\n    eventCategory: \"EC\",\n    eventAction: \"Cart\",\n    eventLabel: \"add\",\n    eventValue: 2000\n});\n```\n\n#### Register Plugin ( in plugin code )\n\n```js\nclass MyPlugin {\n    constructor(agent, opts) {\n        this.opts = opts || { msg: \"hi\" };\n    }\n\n    greeting(target) {\n        const name = target || \"user\";\n        console.log(this.opts.msg + \", \" + name);\n    }\n}\n```\n\n#### Use Plugin\n\n```js\nimport Agent from \"@userdive/agent\";\nimport Myplugin from \"path/to/plugin\";\n\nconst agent = new Agent(\"projectId\", \"auto\");\nagent.provide(\"myplugin\", MyPlugin);\nagent.require(\"myplugin\", { msg: \"hello\" }); // provided name\nagent.run(\"myplugin\", \"greeting\", \"everyone\");\n// => output 'hello, everyone'\n```\n\n## Contribute\n\nPRs accepted. [join us](https://www.wantedly.com/companies/uncovertruth/projects)\n\n## License\n\nGPLv3. Full license text is available in [LICENSE](https://github.com/userdive/agent.js/blob/master/LICENSE)\n","versions":{"0.0.3":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.3","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"js-cookie":"^2.1.3","mitt":"^1.0.1","raven-js":"^3.11.0","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^0.2.0","assert-exception":"^1.1.0","babel-cli":"^6.23.0","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.3.2","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.23.0","browser-env":"^2.0.21","codecov":"^1.0.1","cross-env":"^3.1.4","eslint":"^3.16.0","faker":"^4.0.0","flow-bin":"^0.40.0","is-url":"^1.2.2","jsdom":"^9.11.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.2","mocha":"^3.2.0","npm-run-all":"^4.0.1","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.0","sinon":"^2.0.0-pre.5","string-replace-loader":"^1.0.5","uglifyjs-webpack-plugin":"^0.2.0","webpack":"^2.2.1","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPLv3","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"40a979457a64d44825d7c895a92f1372bd709ecd","_id":"@userdive/agent@0.0.3","_shasum":"211ffde63a4045bbdb682427c2b6f9c14297d61b","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"211ffde63a4045bbdb682427c2b6f9c14297d61b","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.3.tgz","integrity":"sha512-YVkJqnO4r9fuoRuSjGWiN4isdwVvwHpJByy11qKuqiTMJ/KRDdLYVn70W86c+cWLm+RpSF7a9KYV+2pn9Gj9Gw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAU2Oke4dvMwgf26jGTTXhtsv2jZ+1Kxjd7LW7VWk0WQIgJ4vmfD1jVMqthHcec+mnViB/+hX2DP862CMP+upm6GI="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.0.3.tgz_1488188306837_0.34603710006922483"},"directories":{}},"0.0.4":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.4","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"js-cookie":"^2.1.3","mitt":"^1.1.0","raven-js":"^3.12.1","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0-beta.0","assert-exception":"^1.1.0","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.0","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.23.0","browser-env":"^2.0.24","codecov":"^1.0.1","cross-env":"^3.2.3","eslint":"^3.17.1","faker":"^4.1.0","flow-bin":"^0.41.0","is-url":"^1.2.2","jsdom":"^9.11.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.2","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.0.0-pre.6","string-replace-loader":"^1.0.5","uglify-js":"^2.8.10","uglifyjs-webpack-plugin":"^0.3.0","webpack":"^2.2.1","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"9819aa58e31ec4bec5453f0659238849e91cd223","_id":"@userdive/agent@0.0.4","_shasum":"c3d1bf323abebd8048aef33de0da01b0eb625e75","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"c3d1bf323abebd8048aef33de0da01b0eb625e75","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.4.tgz","integrity":"sha512-r/A7pOmDERnx7WSv6E3sOWQGIJNBNRAYNFoSML5HBXHF2lD3+Nn1d4ZIgQTxOFzAkSdhNcyFAwbqlxSZngZmUg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClqbBIcp2hAQZpymRbzMRNSsVvXiHIg9KVvqE4WnCShgIhAPHdarXckAgDjHzdWQAVIaCS5OXdBrHWF2nGP87CHNvB"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.0.4.tgz_1489127753375_0.17557222163304687"},"directories":{}},"0.0.5":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.5","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"js-cookie":"^2.1.3","mitt":"^1.1.0","raven-js":"^3.12.1","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0-beta.0","assert-exception":"^1.1.0","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.0","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.23.0","browser-env":"^2.0.24","codecov":"^1.0.1","cross-env":"^3.2.3","eslint":"^3.17.1","faker":"^4.1.0","flow-bin":"^0.41.0","is-url":"^1.2.2","jsdom":"^9.11.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.2","karma-phantomjs-launcher":"^1.0.2","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.2","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.0.0-pre.6","string-replace-loader":"^1.0.5","uglify-js":"^2.8.10","uglifyjs-webpack-plugin":"^0.3.0","webpack":"^2.2.1","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"ca79b12df0d6e4d0a99024b139cef53a28629db4","_id":"@userdive/agent@0.0.5","_shasum":"b6b5af2e59f4fd636186e79d9c55ecf29fd42341","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"b6b5af2e59f4fd636186e79d9c55ecf29fd42341","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.5.tgz","integrity":"sha512-lKnQxtKkvdhfrtdeOkGrniMcTmifmCLpyAskdZgZbw8jxwDAMm0JXcIxZckPNWu5swkNjKdVZre07BzoO/qUtw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDLde2gyc9rIjc+ibaPeOiiMF+8BLn3RNWqtlgDGe4gdAiEA+sBoHJ6EbLxAJPB4MKLKZZnGDvqhGfJqNfPyksQyZ5g="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/agent-0.0.5.tgz_1489130775598_0.6545730109792203"},"directories":{}},"0.0.6":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.6","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"js-cookie":"^2.1.3","mitt":"^1.1.0","raven-js":"^3.12.1","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0-beta.0","assert-exception":"^1.1.0","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.0","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.23.0","browser-env":"^2.0.25","codecov":"^1.0.1","cross-env":"^3.2.3","eslint":"^3.17.1","faker":"^4.1.0","flow-bin":"^0.41.0","is-url":"^1.2.2","jsdom":"^9.12.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.2","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.2","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.0.0-pre.6","string-replace-loader":"^1.0.5","uglify-js":"^2.8.12","uglifyjs-webpack-plugin":"^0.3.0","webpack":"^2.2.1","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"ec3610d8787200d11b15e48db3667353fd3549a4","_id":"@userdive/agent@0.0.6","_shasum":"cb86ea3414a454422ffc31a0fed84471bc7eca99","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"cb86ea3414a454422ffc31a0fed84471bc7eca99","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.6.tgz","integrity":"sha512-i9MEie8GW42rDNNlOkLoN8+yTwsXsO/HFszwGkSQgg2hC63AmoDmmybV5/DfJHMY5gvPQVpLjE+H61yiQ1raPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFt2bW5J5QQ54TxUWJKSBILonchIUzh2Kj7eY7QAQA5zAiEAh5glf4r0CZaycRQh34oQcSxeXWEXHK7Ukbj0124CwEE="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.0.6.tgz_1489389039903_0.9214923568069935"},"directories":{}},"0.0.7":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.7","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"js-cookie":"^2.1.3","mitt":"^1.1.0","raven-js":"^3.12.1","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0-beta.0","assert-exception":"^1.1.0","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.0","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.22.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.23.0","browser-env":"^2.0.25","codecov":"^1.0.1","cross-env":"^3.2.3","eslint":"^3.17.1","faker":"^4.1.0","flow-bin":"^0.41.0","is-url":"^1.2.2","jsdom":"^9.12.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.2","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.2","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.0.0-pre.6","string-replace-loader":"^1.0.5","uglify-js":"^2.8.12","uglifyjs-webpack-plugin":"^0.3.0","webpack":"^2.2.1","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"af907dcd4edf80a0ac3a94bed558ae9ce2282d87","_id":"@userdive/agent@0.0.7","_shasum":"ee1b424c04433d425393433a7276ccbacea385ca","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"ee1b424c04433d425393433a7276ccbacea385ca","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.7.tgz","integrity":"sha512-PQbQgXM1OQVQrfwPVEFFOXgm8EHgt+IXj8zBeCmbz5p4P/DEYZJH3uV24vZA4UHDaHHhVF1c8ak+X2WuMO5zgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2VOMpyFs8n2Jkrv90D1jvsGnZkCDtaeC+9p4x1NcZeAIhAO671i7n6q6v5LntBhdN0Du52dN/7TTdBSsqTmSpcM2b"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/agent-0.0.7.tgz_1489403193895_0.8045728371944278"},"directories":{}},"0.0.8":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.0.8","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.3","mitt":"^1.1.0","raven-js":"^3.13.1","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0-beta.0","assert-exception":"^1.1.0","babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.24.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.0","browser-env":"^2.0.26","codecov":"^2.0.1","cross-env":"^3.2.4","eslint":"^3.18.0","faker":"^4.1.0","flow-bin":"^0.42.0","is-url":"^1.2.2","jsdom":"^9.12.0","jsdom-global":"^2.1.1","karma":"^1.5.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.1.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.1.0","string-replace-loader":"^1.1.0","uglify-js":"^2.8.16","uglifyjs-webpack-plugin":"^0.3.1","webpack":"^2.3.2","webpack-bundle-size-analyzer":"^2.4.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","gen-flow":"flow gen-flow-files src --out-dir lib","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"_id":"@userdive/agent@0.0.8","_shasum":"937f78c5d4b0795fb15bc6c03f115c5296687b1f","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"937f78c5d4b0795fb15bc6c03f115c5296687b1f","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.0.8.tgz","integrity":"sha512-UZXn3GRxiAY/w5BWjw87Fh3fWU3TgyuOWRTgxfO1gbPgjr1js0l7HIpA5L+fW1dHqzZSdYWvBXP+TMWaUhSjlg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7DbekIeGRJ+qA4JZIv2NNGc2J4BEIQLKLwBYzfdT6dQIhAN13Yka6VnaEZkBHs3ivfO+BzW9eoLObLhxlYxRLHZiw"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/agent-0.0.8.tgz_1490743263866_0.18452691426500678"},"directories":{}},"0.1.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.1.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.14.0","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-es2015":"^6.24.1","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","browser-env":"^2.0.30","codecov":"^2.0.1","cross-env":"^4.0.0","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.1","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.43.1","is-url":"^1.2.2","jsdom":"^9.12.0","jsdom-global":"^2.1.1","karma":"^1.6.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.2.0","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.1.0","string-replace-loader":"^1.2.0","uglify-js":"^2.8.22","uglifyjs-webpack-plugin":"^0.4.1","webpack":"^2.3.3","webpack-bundle-size-analyzer":"^2.6.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc -c esdoc.json","build:flow":"flow gen-flow-files src --out-dir lib","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib docs","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"73331af3015d68cd6a0ac3838a5aac198f876a0c","_id":"@userdive/agent@0.1.0","_shasum":"1c1d42c8ba9d16fb38719bb12242a42cc2f61d07","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"1c1d42c8ba9d16fb38719bb12242a42cc2f61d07","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.1.0.tgz","integrity":"sha512-nC6NVQOG9FVp5lc8ljNWq0LZJc9bnJibwktFXy+0k40aILnoyWQSGl/Xmd4NoM1OXQtSkIzXjDKwgIkUeNw1Ww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIElA3GxUofkAIQ8cQtuQDgor628s5pHUrSBuyVRQKt0xAiAQMOWfDW1IFMztAd3fz2p3wVrxoZ649L0jUsNw5FVC7w=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.1.0.tgz_1491959494695_0.5398108595982194"},"directories":{}},"0.2.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.2.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.14.0","ui-event-observer":"^1.1.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-istanbul-loader":"^0.1.0","babel-loader":"^6.4.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.3.3","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","browser-env":"^2.0.30","codecov":"^2.0.1","cross-env":"^4.0.0","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.1","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.43.1","is-url":"^1.2.2","jsdom":"^9.12.0","jsdom-global":"^2.1.1","karma":"^1.6.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","mocha":"^3.2.0","npm-run-all":"^4.0.2","nyc":"^10.2.0","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.1.0","string-replace-loader":"^1.2.0","uglify-js":"^2.8.22","uglifyjs-webpack-plugin":"^0.4.1","webpack":"^2.3.3","webpack-bundle-size-analyzer":"^2.6.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc -c esdoc.json","build:flow":"flow gen-flow-files src --out-dir lib","ci:jsdom":"npm run test","ci:karma":"npm run karma","ci:sauce":"cross-env CI_MODE=sauce npm run karma","clean":"rimraf coverage lib docs","coverage:jsdom":"echo 'nothing to do'","coverage:karma":"codecov -t $CODECOV_TOKEN -f ./coverage/karma/*/lcov.info","coverage:sauce":"echo 'nothing to do'","karma":"karma start --single-run","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prekarma":"npm run clean","prepublish":"npm run build","pretest":"npm-run-all -p clean","test":"npm-run-all -p test:*","test:lint":"npm run lint","test:mocha":"cross-env BROWSER=jsdom nyc mocha -- test"},"gitHead":"87f140b2e03570ad1b81843eacaedf358ecd2d93","_id":"@userdive/agent@0.2.0","_shasum":"682052feb0692c9f6e55c92669e0604d8e53f524","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"682052feb0692c9f6e55c92669e0604d8e53f524","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.2.0.tgz","integrity":"sha512-Cq8V6rxLFgzxZgrYWXGTx5B/1VpYZzt3VqANJ9BvNVgRWyygd74f2GfV4tIAt0pidDsNg4oOFo+ieJfyerqE2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGJ1OqZdxqqkfndtw+vm4jEcR4xdqQ+bLDADs1+kAEovAiAA/O6QV+cPR1BpfV63R6QrTEkkTn0wDlV1/dVQUdi/xA=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.2.0.tgz_1491982169337_0.0638129529543221"},"directories":{}},"0.3.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.3.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.14.2","ui-event-observer":"^1.2.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^6.4.1","babel-plugin-istanbul":"^4.1.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.4.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.0.1","cross-env":"^4.0.0","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.1","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.44.2","is-url":"^1.2.2","karma":"^1.6.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","mocha":"^3.2.0","npm-run-all":"^4.0.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.1.0","string-replace-loader":"^1.2.0","uglify-js":"^2.8.22","uglifyjs-webpack-plugin":"^0.4.3","webpack":"^2.4.1","webpack-bundle-size-analyzer":"^2.6.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc","build:flow":"flow gen-flow-files src --out-dir lib","ci:local":"npm run test","ci:sauce":"cross-env CI_MODE=sauce npm run test:karma","clean":"rimraf coverage lib docs","coverage:local":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","coverage:sauce":"echo 'nothing to do'","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prepublish":"npm run build","pretest":"npm run clean","test":"npm-run-all -p test:*","test:karma":"karma start --single-run","test:lint":"npm run lint"},"gitHead":"f82cc6a5950c57dfa2a343009ce5662a6cd29dd9","_id":"@userdive/agent@0.3.0","_shasum":"a7ab290bb5ee4701679e72933931b0abffb286be","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.jp"},"dist":{"shasum":"a7ab290bb5ee4701679e72933931b0abffb286be","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.3.0.tgz","integrity":"sha512-yAlSwTj3xeAiza+AQeWyV+LGTBNbk5bAsAlFMfHDsPRIjzEpqxjXqoJF127BQtX8/6Ilv6FxXjLxyBAkRgBuCA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDyf0GUtmEBW6zynYBLYxIoWkeo0Mawv7DC6czQWC8EmQIgGuSdPDJZOoli4XkG3zU51ED8LzYPyntle2RU9Ugr064="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/agent-0.3.0.tgz_1492771599274_0.7140886778943241"},"directories":{}},"0.3.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.3.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.14.2","ui-event-observer":"^1.2.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-plugin-istanbul":"^4.1.1","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.4.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.0.1","cross-env":"^4.0.0","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.1","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.45.0","is-url":"^1.2.2","karma":"^1.6.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","mocha":"^3.2.0","npm-run-all":"^4.0.2","power-assert":"^1.4.2","rimraf":"^2.6.1","sinon":"^2.1.0","string-replace-loader":"^1.2.0","uglify-js":"^2.8.22","uglifyjs-webpack-plugin":"^0.4.3","webpack":"^2.4.1","webpack-bundle-size-analyzer":"^2.6.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc","build:flow":"flow gen-flow-files src --out-dir lib","ci:local":"npm run test","ci:sauce":"cross-env CI_MODE=sauce npm run test:karma","clean":"rimraf coverage lib docs","coverage:local":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","coverage:sauce":"echo 'nothing to do'","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","prepublish":"npm run build","pretest":"npm run clean","test":"npm-run-all -p test:*","test:karma":"karma start --single-run","test:lint":"npm run lint"},"gitHead":"779cc0e9e321878e030b1ef02c0ba51dae2a5b9d","_id":"@userdive/agent@0.3.1","_shasum":"759478695da4cff9e5086c607f60322e5e238944","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"shasum":"759478695da4cff9e5086c607f60322e5e238944","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.3.1.tgz","integrity":"sha512-dMgWgEVlLRtDr03FqRhaiVxOrKm0EACUMZncyy2CnPpHJY6EUlb9q5Xd9AhNJ0J0AoXPQNXuSjlhK3cGG7rASg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCR3lfZHpApudPUaOWHwLt1D9U8821hpvkHm6a/gBZMygIhAL12NhhUfXZUVv9bNm8bTbPBNTTUJpgyOcS7pFaJ8CrL"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/agent-0.3.1.tgz_1493705409357_0.8461100975982845"},"directories":{}},"0.4.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.4.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.15.0","ui-event-observer":"^1.2.0","uuid":"^3.0.1"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.24.1","babel-loader":"^7.0.0","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.1","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.0","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.3","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.47.0","husky":"^0.13.4","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^3.5.1","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.2","prettier-eslint-cli":"^3.6.1","rimraf":"^2.6.1","sinon":"^2.3.2","string-replace-loader":"^1.2.0","uglify-js":"^3.0.13","uglifyjs-webpack-plugin":"^0.4.3","webpack":"^2.6.1","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:local":"npm run test","ci:sauce":"cross-env CI_MODE=sauce npm run test:karma","clean":"rimraf coverage lib docs","coverage:local":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","coverage:sauce":"echo 'nothing to do'","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","pretest":"npm run clean","test":"npm-run-all -p test:*","test:karma":"karma start --single-run","test:lint":"npm run lint"},"gitHead":"ada0185787973b1f5c7f08f2a8eb12566e588c7e","_id":"@userdive/agent@0.4.0","_shasum":"1a9833dbde162bef0fcd4591b95a109093c5ac35","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"shasum":"1a9833dbde162bef0fcd4591b95a109093c5ac35","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.4.0.tgz","integrity":"sha512-9Y3d+a9EBQFhBU6SEtDl1D+eyC4nszqXP5ZOcsGCUCMiR8BYmlM6yJa0V+TOL8TsWGEUk6aLCqMrlESaKP24BA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDgtfPMdAVcu4aIOqZAWgKT2J2FUOacHq1AarYNaEiL2AiEAsTEtqcp/pPNZYChEQYlWRAtfdLiqQxWPdnehlIvd3yI="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.4.0.tgz_1496139157481_0.9159333813004196"},"directories":{}},"0.5.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.5.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.16.0","ui-event-observer":"^1.2.0","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.0","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.2","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.4","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.48.0","husky":"^0.14.0","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^4.0.0","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.3.5","string-replace-loader":"^1.2.0","uglify-js":"^3.0.20","uglifyjs-webpack-plugin":"^0.4.6","webpack":"^3.0.0","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"867879ee4c9af40c2b1ac85fe80ea34d20a7aea6","_id":"@userdive/agent@0.5.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-KeWj87Crc2Jv3lZgi+DRojs4U9VwZEOUcHvK9RJCp1+CdsfMYuKqx3G3886akQnM9ViUnh6wVANtB/a0+6ibuA==","shasum":"5c40f9c2f5c1bc1633f6998aca1bbb6063f03d7f","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDly9alPwbX2YqhjukE8ic70ZkbBQf4Lo3fenjMeNo1wAiBE/8+2Mv/JZmZf/gTJ0PYHJevNRSXEnzcXEiRAqbczPQ=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.5.0.tgz_1498543513741_0.9739529141224921"},"directories":{}},"0.6.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.6.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.16.0","ui-event-observer":"^1.2.0","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.0.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.0","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.2","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.4","eslint":"^3.19.0","faker":"^4.1.0","flow-bin":"^0.48.0","husky":"^0.14.0","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^4.0.0","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.3.5","string-replace-loader":"^1.2.0","uglify-js":"^3.0.20","uglifyjs-webpack-plugin":"^0.4.6","webpack":"^3.0.0","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json --colors | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"03883672c43e26267f11226337c64203b63be0bf","_id":"@userdive/agent@0.6.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-Vd3B7YkCM+XNvEZW5raW/FaMwJ7CWeTryFDMaBfTMcgPTDuBpwPXB1ToWitO0z7YL2MRk83kM4v7JPCySssH4Q==","shasum":"85efcec83de467c8ebdd2c3ca9b5b1271b2d087e","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEUQwRWWlKJK66PFuZJMCEmmh4lISbs7JPvGEIynthEtAiAh8j+6swK1zqogsgf5jBwWNQuRUOoJgCRFA63vcUobAA=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.6.0.tgz_1498578567921_0.5559653486125171"},"directories":{}},"0.6.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.6.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.16.0","ui-event-observer":"^1.2.0","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.2","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.4","eslint":"^4.1.1","faker":"^4.1.0","flow-bin":"^0.48.0","husky":"^0.14.0","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^4.0.0","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.3.5","string-replace-loader":"^1.2.0","uglify-js":"^3.0.20","uglifyjs-webpack-plugin":"^0.4.6","webpack":"^3.0.0","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"ac04a6cda49a67e7716986850807e83eee99c474","_id":"@userdive/agent@0.6.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-J1fBnunR+NBKAl1bhI6jDAjbX0EGcyORm52WOXt1se0R5xGCE2+BO7sYkGAK/UdSqoMWT8xO8jcSyvzc68rfoQ==","shasum":"fdc0aa406266cb115516e6eeb284687b5d0df3c8","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.6.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFlS0qRVFrAs8Fghy/V/6dDrzDRBM2IbkqbElCnzN0ixAiEAwEVnhcZ+U+8aE5o2ECtXAicqngDr1/urLr3YdlLb3c0="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.6.1.tgz_1498624487236_0.1832701340317726"},"directories":{}},"0.7.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.7.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.16.0","ui-event-observer":"^1.2.0","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.2","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.4","eslint":"^4.1.1","faker":"^4.1.0","flow-bin":"^0.49.1","husky":"^0.14.0","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^4.0.0","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.3.6","string-replace-loader":"^1.2.0","uglify-js":"^3.0.21","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.0.0","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"46a84f7e94617868af4def65cde4ce90bce4619f","_id":"@userdive/agent@0.7.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-EyK583OnhSQ2EaILu6RmCigARpt4IehYAGC4gpI4aDy6xZxK0XBdwl98sza6Dl5/NYmIzcpaIQQlC8+uEMm8/w==","shasum":"6526230a3c6979bce843d3da662d0533b771de4c","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.7.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICdmuKd3FYwN/qobu0Pfjig3+L/DV0S+DvDQW6YJO09aAiEAvivqK03PPU0ZmgbuJAMysW56hbVA6Zkd8aRxOAIxahA="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.7.0.tgz_1498707981263_0.01091555436141789"},"directories":{}},"0.7.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.7.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.16.0","ui-event-observer":"^1.2.0","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.5.2","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^0.5.2","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^0.1.4","eslint":"^4.1.1","faker":"^4.1.0","flow-bin":"^0.49.1","husky":"^0.14.0","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.3","lint-staged":"^4.0.0","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.3.6","string-replace-loader":"^1.2.0","uglify-js":"^3.0.21","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.0.0","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"31c8a6d3594a93f7a98668b1d838b159767ef689","_id":"@userdive/agent@0.7.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-sIr4HGcD22p79eUMk54lOQuwCDjlKIqjX5fmwcGFfZRmKbEV9CWT0+7GNzzxbvqOwUTCjVrijJPGtypCY9ih6g==","shasum":"e8cd26b77aa867a2b1461fc23895da4f38e414c0","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.7.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHUWSypvxYwD0KuHVC4kLx8mOt+a+admm/uRK9LDTMMZAiB5y6l1FYhVCcRH83k80+RtKBtq8/32w17Xjn50xS2SXA=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.7.1.tgz_1498715923709_0.8544980639126152"},"directories":{}},"0.8.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.8.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.17.0","ui-event-observer":"^1.2.1","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.6.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.2.0","cross-env":"^5.0.1","esdoc":"^1.0.1","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^1.0.0","esdoc-standard-plugin":"^1.0.0","eslint":"^4.3.0","faker":"^4.1.0","flow-bin":"^0.51.0","husky":"^0.14.3","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.4","lint-staged":"^4.0.2","mocha":"^3.4.2","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^2.4.1","string-replace-loader":"^1.3.0","uglify-js":"^3.0.27","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.4.1","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"ee6af949997b38979b5768141ea67bef4408978c","_id":"@userdive/agent@0.8.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-Dv9K8gpX8x3raEFKGmJc43XH4Ogd80x+SN5cHJg1Ouj05HlYt5XvSjXji99vV31jk3udzkTSG5kZk5rb8N4neQ==","shasum":"9cbce797ea584a4bea4db35a171073f6f3df9cb4","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.8.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDf/1piGXDLygLXth9CRD26U4fVgd/lLjVc1bz8yCyDtgIhAN/MQ45xVSLTePgvbT+ar8imDZUvw/u0KIBVGNoDE/ue"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.8.0.tgz_1501648134016_0.9234504378400743"},"directories":{}},"0.9.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.9.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.17.0","ui-event-observer":"^1.2.1","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.6.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.3.0","cross-env":"^5.0.3","esdoc":"^1.0.1","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^1.0.0","esdoc-standard-plugin":"^1.0.0","eslint":"^4.3.0","faker":"^4.1.0","flow-bin":"^0.52.0","husky":"^0.14.3","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.4","lint-staged":"^4.0.2","mocha":"^3.5.0","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^3.0.0","string-replace-loader":"^1.3.0","uglify-js":"^3.0.27","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.4.1","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"ceba6e713e5a66ddefe2e05029b39678323902d3","_id":"@userdive/agent@0.9.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-iE/A0T2OpyS/w6GlvwxMYUu6fIAd7w+F2ah6Jyebzr1vkqrsa3RjWgJ2Ko27IoReeR3RNPZWXcmt6E682Y3ofg==","shasum":"40631fde596fa0b93369c992c9e25437fc5ff8b0","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.9.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHqak0K5pT5UWFHlcnttWuAMOftdnbz5ciKXxGgOAHwpAiAME9TOal+GzxfAojMWxFQqPwslzWz0R1jyXjIjHqbcBg=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.9.0.tgz_1502096167026_0.29248454375192523"},"directories":{}},"0.9.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.9.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.17.0","ui-event-observer":"^1.2.1","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.6.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.3.0","cross-env":"^5.0.3","esdoc":"^1.0.1","esdoc-flow-plugin":"^1.0.0","esdoc-importpath-plugin":"^1.0.0","esdoc-standard-plugin":"^1.0.0","eslint":"^4.3.0","faker":"^4.1.0","flow-bin":"^0.52.0","husky":"^0.14.3","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.4","lint-staged":"^4.0.2","mocha":"^3.5.0","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^3.0.0","string-replace-loader":"^1.3.0","uglify-js":"^3.0.27","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.4.1","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"npm-run-all build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"npm-run-all -p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"d044fde89110515731163506ac106f03a5e94aa7","_id":"@userdive/agent@0.9.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-iOapUsUKcxBjFWhtL7S5En6VKIJObo8HMYtcErgvF7rrf0I8eNCiKx+aSR0oegiV3fyJYq6e2SEM0wJ0EHjjFg==","shasum":"0d1594bfc95a1140f3dc04cea375013392b08485","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.9.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID/L7JRVjRlHeh33phlCNiKJ9H5r+4rLDiFu2QXp3UOKAiEA/FzfDAINIJ8yonAGA3X4vaC5zqtgLrPovOIatrVCkz0="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.9.1.tgz_1502117563000_0.7227299162186682"},"directories":{}},"0.9.2":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.9.2","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^0.0.1","js-cookie":"^2.1.4","raven-js":"^3.17.0","ui-event-observer":"^1.2.1","uuid":"^3.1.0"},"devDependencies":{"@uncovertruth/eslint-config-flowtype":"^1.1.0","assert-exception":"^1.1.0","babel-cli":"^6.24.1","babel-core":"^6.25.0","babel-loader":"^7.1.1","babel-plugin-istanbul":"^4.1.4","babel-plugin-transform-object-assign":"^6.22.0","babel-preset-env":"^1.6.0","babel-preset-flow":"^6.23.0","babel-preset-power-assert":"^1.0.0","babel-register":"^6.24.1","codecov":"^2.3.0","cross-env":"^5.0.4","esdoc":"^1.0.1","esdoc-flow-type-plugin":"^1.0.0","esdoc-importpath-plugin":"^1.0.0","esdoc-standard-plugin":"^1.0.0","eslint":"^4.4.0","faker":"^4.1.0","flow-bin":"^0.52.0","husky":"^0.14.3","is-url":"^1.2.2","karma":"^1.7.0","karma-coverage":"^1.1.1","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.3","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.1.0","karma-webpack":"^2.0.4","lint-staged":"^4.0.3","mocha":"^3.5.0","npm-run-all":"^4.0.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.1.1","rimraf":"^2.6.1","sinon":"^3.0.0","string-replace-loader":"^1.3.0","uglify-js":"^3.0.27","uglifyjs-webpack-plugin":"^0.4.6","userdive":"^0.3.0","webpack":"^3.4.1","webpack-bundle-size-analyzer":"^2.7.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier-eslint --write","eslint --cache","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"run-p build:*","build:babel":"cross-env NODE_ENV=dev babel src -d lib","build:bundle":"cross-env NODE_ENV=production webpack --profile --json | webpack-bundle-size-analyzer","build:doc":"esdoc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -t $CODECOV_TOKEN -f ./coverage/*/lcov.info","lint":"run-p lint:*","lint:es":"eslint . --cache","lint:flow":"flow","postbuild":"cp robots.txt lib/build/.","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"dc2d28b08ee831ed1629610d0c7c64a50cb1bba7","_id":"@userdive/agent@0.9.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-hOpMAl17rpIkk9CuJFIwfxbqSxQh1f46G0s52qUWBBzRoLVWtQio5a9lVVxJNtW46JuJFF9YZmpyrBGYBCnCGw==","shasum":"0544fe3aed89b96af974bfd882a937790e126bf8","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.9.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBXj0oR4gviFkxy2h8k5JptQlAm5oQBTWyRVlpN3tASwIgLH/veaxivfeglMTrVJEQIJwBtGScaZpMwzg4/5Xe/DM="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.9.2.tgz_1502261493479_0.6443094061687589"},"directories":{}},"0.10.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.10.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^1.0.2","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.19.1","ui-event-observer":"^1.2.1","uuid":"^3.1.0"},"devDependencies":{"@types/faker":"^4.1.1","@types/is-url":"^1.2.28","@types/js-cookie":"^2.1.0","@types/mocha":"^2.2.44","@types/node":"^8.0.47","@types/object-assign":"^4.0.30","@types/sinon":"^4.0.0","@types/uuid":"^3.4.3","@types/webpack":"^3.0.14","@uncovertruth/tslint-config":"^1.2.0","assert-exception":"^1.1.0","codecov":"^3.0.0","cross-env":"^5.1.1","faker":"^4.1.0","husky":"^0.14.3","is-url":"^1.2.2","istanbul-instrumenter-loader":"^3.0.0","karma":"^1.7.1","karma-coverage-istanbul-reporter":"^1.3.0","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.5","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.2.0","karma-webpack":"^2.0.5","lint-staged":"^5.0.0","mocha":"^4.0.1","npm-run-all":"^4.1.1","power-assert":"^1.4.4","prettier":"^1.7.4","rimraf":"^2.6.2","sinon":"^4.0.2","string-replace-loader":"^1.3.0","ts-loader":"^3.1.1","ts-node":"^3.3.0","tslint":"^5.8.0","typedoc":"^0.9.0","typescript":"^2.5.3","uglify-js":"^3.1.6","uglifyjs-webpack-plugin":"^1.0.1","userdive":"^0.4.0","webpack":"^3.8.1","webpack-espower-loader":"^1.0.2"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.js":["prettier --write","git add"],"*.ts":["prettier --parser typescript --write","tslint --fix","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"run-p build:*","build:bundle":"webpack --env=production","build:doc":"typedoc --out docs/ src/","build:ts":"tsc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -f ./coverage/lcov.info","lint":"tslint \"src/**/*.ts\" \"test/**/*.ts\"","postbuild":"cp robots.txt lib/build/.","prebuild":"npm run clean","precommit":"lint-staged","prepublish":"npm run build","test":"karma start --single-run"},"gitHead":"032310a5d12de88e80652363a6849dfb5ac8700f","_id":"@userdive/agent@0.10.0","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-XGa/awN8D6KkCSEh6PBHRS5tWgn32B7E+H19lmaze6MCQcaOaiuJSpFlS+h/+e0utWKqKJ9iJM6Of4ndQJW54w==","shasum":"ba323be8c59d3fa5bbfd86b50aa26227625c81d6","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.10.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCjuP20vlwZohQ6o2yomt41UZTvHjAngKyFrI0Ie1vuvQIhAMLynmiGEQG8Y7bubdnY1aYDnlsoEeG0043A8r4RmK1S"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.10.0.tgz_1511229864566_0.4611834045499563"},"directories":{}},"0.11.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.11.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^1.1.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.22.1","ui-event-observer":"^1.2.2","uuid":"^3.2.1"},"devDependencies":{"@types/faker":"^4.1.2","@types/is-url":"^1.2.28","@types/js-cookie":"^2.1.0","@types/mocha":"^2.2.46","@types/node":"^9.3.0","@types/object-assign":"^4.0.30","@types/sinon":"^4.1.3","@types/uuid":"^3.4.3","@types/webpack":"^3.8.3","@uncovertruth/eslint-config":"^3.2.1","@uncovertruth/tslint-config":"^1.3.0","assert-exception":"^1.1.0","codecov":"^3.0.0","cross-env":"^5.1.3","eslint":"^4.15.0","faker":"^4.1.0","husky":"^0.14.3","is-url":"^1.2.2","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-coverage-istanbul-reporter":"^1.3.3","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.5","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.2.0","karma-webpack":"^2.0.9","lint-staged":"^6.0.0","mocha":"^5.0.0","npm-run-all":"^4.1.2","power-assert":"^1.4.4","prettier-eslint-cli":"^4.7.0","rimraf":"^2.6.2","sinon":"^4.1.6","size-limit":"^0.14.0","string-replace-loader":"^1.3.0","ts-loader":"^3.2.0","ts-node":"^4.1.0","tslint":"^5.9.1","typedoc":"^0.9.0","typescript":"^2.6.2","typescript-eslint-parser":"^12.0.0","uglify-js":"^3.3.7","uglifyjs-webpack-plugin":"^1.1.6","userdive":"^0.4.1","webpack":"^3.10.0","webpack-espower-loader":"^1.0.2"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","lint-staged":{"*.ts":["prettier-eslint --parser typescript --write","tslint --fix","git add"],"*.md":["prettier --parser markdown --write","git add"]},"main":"lib/agent.js","repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"run-p build:*","build:bundle":"webpack --env=production && size-limit","build:doc":"typedoc --out docs/ src/ && touch docs/.nojekyll","build:ts":"tsc","ci:sauce":"cross-env CI_MODE=sauce npm run test","clean":"rimraf coverage lib docs","coverage":"codecov -f ./coverage/lcov.info","lint":"run-p lint:*","lint:ts":"tslint {src,test}/**/*.ts","postbuild":"cp robots.txt lib/build/.","prebuild":"npm run clean","precommit":"lint-staged","prepare":"npm run build","test":"karma start --single-run"},"size-limit":[{"path":"lib/build/agent.js","limit":"8 KB"}],"gitHead":"9e8c20d34c2d8ead9e7a052fb9d6fdfd8ded83ab","_id":"@userdive/agent@0.11.0","_npmVersion":"5.6.0","_nodeVersion":"9.4.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-HnLzj9KfBV4K6pyCJhnniUShaFrYql5GatshfpojxmSu4TaKY7yrBl+dfksmT9BFTRnzHZ/ZPav49ky3iI+LxA==","shasum":"be841e145efdd97b23bf0e9d59340f0a32770446","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.11.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICQmREmOuG9jRk/o1us7KIKjb0IwwjCZAOTTgYystIBrAiEA2UfSxDuDcO89lhV3ShSXIaAgXwY5P5/As/Y3uZfMFZU="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent-0.11.0.tgz_1516687998468_0.011311445152387023"},"directories":{}},"0.12.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.12.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^1.1.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.22.3","ui-event-observer":"^1.2.2","uuid":"^3.2.1"},"devDependencies":{"@types/faker":"^4.1.2","@types/is-url":"^1.2.28","@types/js-cookie":"^2.1.0","@types/mocha":"^2.2.48","@types/node":"^9.4.6","@types/object-assign":"^4.0.30","@types/sinon":"^4.1.3","@types/uuid":"^3.4.3","@types/webpack":"^3.8.8","assert-exception":"^1.1.0","faker":"^4.1.0","is-url":"^1.2.2","istanbul-instrumenter-loader":"^3.0.0","karma":"^2.0.0","karma-coverage-istanbul-reporter":"^1.3.3","karma-mocha":"^1.3.0","karma-mocha-reporter":"^2.2.5","karma-phantomjs-launcher":"^1.0.4","karma-sauce-launcher":"^1.2.0","karma-webpack":"^2.0.9","mocha":"^5.0.1","power-assert":"^1.4.4","sinon":"^4.3.0","ts-node":"^5.0.0","userdive":"^0.4.1","webpack-espower-loader":"^1.0.2"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prebuild":"npm run clean","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@0.12.1","_npmVersion":"5.6.0","_nodeVersion":"9.6.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-nCmVskV+inDZN2zOOqm9cuOYit6oErg27XdxvhRQCOrqNbxvbmEMdrBRlWl+j0COKPBZRWcoIMLfFMxPcrPGCA==","shasum":"c8ef8bba7ec559a5c524b6976d93275ea48eb5a6","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.12.1.tgz","fileCount":54,"unpackedSize":100315,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDuS11HhwdVDvnl6wme9HLQydDea0XSA6e8jW98UAyrpAiEAyCWz5CbfTPSjUNTCfKhSuJ7sWD6R/9m5ENQJarSAnDI="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_0.12.1_1519631829084_0.2743398131086838"},"_hasShrinkwrap":false},"0.13.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.13.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^1.1.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.22.3","ui-event-observer":"^1.2.2","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"^2.1.0","@types/uuid":"^3.4.3","userdive":"^0.4.1"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@0.13.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-dZc8jo8wsppq79YBa80fXR3Icv38pendsx8t6CWbxPaIe8LTIkzh9yXqZZ9goNQuuNok7YxWsS8m6EEgzvbd3w==","shasum":"2ef4e2c4d221c572b77e1d8ed96978b12465e3c8","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.13.0.tgz","fileCount":54,"unpackedSize":101887,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHVzqY6Oe+qZqq98viX4tzp9cH660BWPgU8eD5pOVRoNAiEAqV6Zqeh0q9YxBXNevfRCrOt0CsruzmcLuu8vYK2eLWE="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_0.13.0_1519885075732_0.7685484360625245"},"_hasShrinkwrap":false},"0.14.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.14.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3","userdive":"^0.14.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@0.14.0","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-4AO32Ds6XztvCTw7e5SsaP5+nOkCTWACgKnkYC0YQq9B01fZWzTlzOkwOnFDatXTDUjauJi0K1SGqi3F08kP7Q==","shasum":"12b574b942582703d35f34cdc33e60f7b7f34723","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.14.0.tgz","fileCount":54,"unpackedSize":100805,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEmBfwC5t5C27ln1OXuq/ED+6jLu9iuOl8UQNg8Fgok4AiEAxxAzeF6QVU9Go2uuA4mh5zUjynoVr1izly2z/VmvS6k="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_0.14.0_1520920416342_0.995935714033557"},"_hasShrinkwrap":false},"0.15.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"0.15.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3","userdive":"^0.15.0"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@0.15.0","_npmVersion":"5.6.0","_nodeVersion":"8.10.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-yyN03A8b6dCUJNmW+TZkUFbHZzEuC2Pqp6Xz7KRTz44FvELptrcpqs8EklttnKsg2bx8yc4JcGYd+pwYH6y+zA==","shasum":"915e4d705ec10702c1afefc6af64072eb05fbcd3","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-0.15.0.tgz","fileCount":54,"unpackedSize":100805,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFBJNkZeKyS1yZufHm9raqS/7gTIbAIFUDavB6knZLnMAiEAoW9O3McpAmVmZTk+nqhS4FJvD6r/oXKUKHm6dMK5bok="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_0.15.0_1521168217024_0.03226325444029077"},"_hasShrinkwrap":false},"1.0.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"1.0.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.0.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@1.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-rCzopojL12SOB/7J9Eo276NY6tEylrm+nm1HIgpOb/N1pEVPr4MkHN1nVBut4FQIuusk7cnJG4GbNMaGkf/QRg==","shasum":"96bcdf5866ee46976a05666124c697522bb79efc","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-1.0.0.tgz","fileCount":51,"unpackedSize":101357,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/SQECRA9TVsSAnZWagAAq6sP/2KJoRq1J4Mu2E6Mo0qJ\nqDFU9aNa8wuigiV8upJzpyrs2YvNvasPELA+177PCbTCQAr5LAoCzckHUO3w\n8xQw3PAglkN1NiSBvef0XIoo/7gRK0bUNYg4ndCjPwRlu1DKOoGF0vF46JgM\nvonOLyPXyw1FAuDPhT+uVGCJMdkb+Ffi5qnv/1ZXQ0wNE/Qwp+Vebr3Lyk37\nCTd40eO6sn4VRMh4rMoTqDmMALsTyVQ7tI+sOOruXugI6iMmLcxAfAOLapJy\nLIJzxOR5XV4+8wBdqGB5/Wc3eq8wMbxexvR1m2XagbRJiYZhIrD1dgv+DNzc\nNyg/cgTzVANASmXRMeDgKeFUaB/6m1bGM6V97SSMv3jPXG+m9HjFRfoZ1SGw\neUddC5luRFgk5DGOsiBECKzMmx4zw3f5BOTgG6CRAtTKRVABzgKZLeh2j94s\nO+jhxoJ7FTFCd6OQebIYecKA+X8fAtOhQy/CQg967e0O0q5VavQKEOLaUPR/\nsGBhNfMINTSs42xsmBUs/5yGtssIL12cqTMC7kJiOKeYeK7CuoUaryvFY+X3\nbkSPiA2+U9+MNeAwj9fSlvy5a4I5SKXjZHCy2c8bxJ9RqOlnfeeakpM6IiwD\nzeKeya/4EUrhzQErEJCyogLrapjM+eHRoUkZ14b9H3qrrvntdeRWhfZ1w2uQ\nzZAW\r\n=Ob2P\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDioFCVmHQxUsX+vwx3uwqTfDmhYssjcRV0180ZzgPITAiAWe91r0EyN8lzZtFrGNVnmQjTGfBdBOVV+j/s9UlQ0+Q=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_1.0.0_1526539268057_0.662778353349857"},"_hasShrinkwrap":false},"1.1.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"1.1.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.1.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@1.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-PJXAtn5tJ5LCqVM9tX2V0mCENn1TQy+9F/SMuR3lwp3Au3ukeXKFSsLYs6a1SMCwXxv8i2uIpel79ZtxZ5VWlw==","shasum":"a0ee7738b58935c5d0eb1195e006c0e78ac916c2","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-1.1.0.tgz","fileCount":51,"unpackedSize":101357,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbC6W3CRA9TVsSAnZWagAAS4cQAI7fLykf1kona+esa2Rw\nciGMuS3e+z1fel2Rq7UIeJ/A6r+TFGZwrqyxEoJVHuujWrKm62ibl7AlpkKf\nywYQ9QOGOvk757T+i///QPAlt0FKOt2L6b+3hUvcfTtsmVi9JxYZixqSsvTS\nvqYyKvGUgCTx9c26Dddxz+rqKCwiZ6YSPEu3837NWhrkkezWsTI2tQQ1Uh79\ndeZlycH5+DM/BHsMP+UXpzUdsiQQzpIAA/fWSQnofnwy/8M2UVQ2tf13Ree9\n3HFVreOsjyWGB4Pm5QKI9wI41twH7WMDa/qsxHao9RMY9W2MbxSfyiT0qVOs\nX7DgbnP6JbzdwP4p30i2AzCT4DT84wGdWyX3+ikghCe0In8ootPEhXOG1JHE\nMj0mdYbE5b0spusOgfWo0ZsKgfux5zAPS4giKU+gNZ6AF/YNh/AXdS2xw0Ft\nOkCpFVXR12a2ITQje9g4VBYvbnbKew8e6FXot7AR/nc0QgX3vlyfEx4bp4C3\nAAty/eBQ+2/f/sgLbf3EP/1TwjncYo/nvwL2f1mrkj0W0Ar0Npfpqr94grDx\nCbUUOS7rIQD6kSbHYxFvHdMQnneM1Te5QGK+sNwer87uXi+8kHwfs9FpI0iU\njgPqaSv0gmAdhVlmLotYMDhUbxD8slGC0PWOWLTxVd8sy4ZOPcst8O3reXzt\njIDD\r\n=kiXQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdAn0hF2xtWZqBEjNS2BerKDByoi5AqQJzSmB7BxNfYQIhAJNXjwwfQgOK/tNlBoqyBFDOjG6U8BG0QcEvikLkvoGm"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_1.1.0_1527489974670_0.9488200327132854"},"_hasShrinkwrap":false},"1.2.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"1.2.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.1.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build","test":"karma start --single-run"},"types":"lib/agent.d.ts","_id":"@userdive/agent@1.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-gbRAoWGejpP0TumQOMJIGYKS7Rne5mMLr4PL/AafN1A6N9TL3bI1g8R8C0wJIAw5IhFsSvtJxdE4m9oH7abjSA==","shasum":"d532aea456ebbc3cefcd1e0fd86c89905c110a20","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-1.2.0.tgz","fileCount":51,"unpackedSize":101361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKKpkCRA9TVsSAnZWagAAOz0P/Rx3C9lSC9i2iF6ACU01\n7pQNt62v3eWYNoUZHJVnrQHilkKXxvmvq2SKxLxDk7rJZDYCpMV202qr7yaV\nWhgh9R689wQN8Tmm9qgLi+ZhQWOB5xPJxUfx6X2Uyb/RoGZH3rADMPvkpjBl\nJKWMCwKvX9vzd87U85JfdNvjD++nEmdpz5OaBd9AbKnjRS+c/SdI4AQzGy1s\nxH5mOBd/53eamMP+EKrzYfhgAQVcvL5drjHPONndEJWppUK4Tfh7Y3e+Dw6K\npZGy85B+BEsa6MLXqexagPWFpQ4TqHFDLSAFDsxf3/uhTRflaH9NJ1tWwouk\naTIfSVQVhoHm/QEcohh6gLsUJYYtvGI96yPOiOfDFYwdHjV7O9lSXY8YbJhm\nY/PTlPmGKQxi9LtZhBShwLbjR/13IZPMw7RIO/ddSSBupBkk3HL4BgPDlXbT\nNDy7+AB8pLNBiRcybcgVXfDXZ7hoNiFtqkVHcnVnOhaht9TKQzVxfC5SSMGj\nPfxN5Sm4H/QKkg5mbEVLncVmYI4y09asvMDk8ddKI61uKcbT3Kv/BXvkIbNp\nixjnE29NYXtqNGCJTbNjlr78a20t3/x56liL4Etm+gBKEavbSX+U7uF87Ad6\nhQ7iHBvrD/VOnGkx1zbNN3JASHNnaJpovKnHCfMHQXfK5eoTuwj8QH52xP2O\nvGMC\r\n=ih4l\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDiDwUzWQFagyXkwxgJSFDOX/LlsZI222hu207HXuUe7AiAhFUj5aBId4M1rPZc23lFYhCiraB6HVNED6a0MvfuH6A=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_1.2.0_1529391716257_0.5562417111348112"},"_hasShrinkwrap":false},"1.3.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"1.3.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.3.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.3"},"engine":{"node":"> 5"},"files":["lib/"],"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@1.3.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-wWjOvKLKOpqAdVccBDfaSdKWp2iOCcxug93pk2OlkZ+FCjMISbfjMAeDVYy2m18DnOauNAJ0iqiBzNwykfR12g==","shasum":"52ebec03c9bcd692b7f33abefef8f4e9e2c1793a","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-1.3.0.tgz","fileCount":51,"unpackedSize":101321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYWufCRA9TVsSAnZWagAA6uYP/iHve0IyM0wXoq2laUds\nLi2FPUSnoCrfThBJlOVceikgttIYu1xGqnSjXj7AsBpPRfS7lxJCh0Vdamqu\nNfJl9aQi7dJJXA+MY38BbF+nbVN1OhkNYBsxZJUpmUHfODhDfseHPwJLIbuh\nsMBWFYsHQI+yfwJX6Y2dXUE+KFW+PoU95a/wpYj5wTbcrVDCBDCdN7Lun2ne\nttP1HquxlD/9jcI0RSwuK4epzgG4rGAB4fmqB9wt0ODvSRmb9pqVVJj6TxBM\naTc6GeCUsD9Q2ZGtaN63oEz7KaDZK39An6xBuiYTK81MPWJjyAE/LCizftI7\ncDAkv8WDt1QU6ZPjKODDy42yo97G1SlubF/eDvOkhwgvWcRdrnmEScT7IPMp\nEEHzsvFdMkOS1RgJwSnwXr+WbEXVNEGAvVa/vF5U+vyjqUF/AeLnuFwLvuor\nSgAYyZIbSCFlaSzdk+OWL158AuLnpTBXxmU3J02jP0QS84b4ID2SBKxcd7HY\nKP/7sEBg5V7CbBHvmYXFKFqAPUZmOputqVk0BDQgaPpPkBAFO/170cqYypNi\nvuE3x4c3bIbZpkHA8gtTmselXj+n9hs8uNX46YZXaXyg7t2f3KstgYCOn7fT\nX4WRt+NlOwUDj+9RaDnzPcExgJFpFo+uhWy2mA7nmDCG6AR0WnUmrEeeKr2X\ngOmu\r\n=d35h\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCuJEH5XhlXe32G7AezOKhCga/uqozxW0yNeCl2rGnrzwIgPCGwS0cHeBA3gmw1Y2dOQtZO0zeQ9+ubFG6aGBYfA4A="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_1.3.0_1533111199341_0.688616092071864"},"_hasShrinkwrap":false},"2.0.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"2.0.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.3.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.1.0","@types/uuid":"3.4.4"},"engine":{"node":"> 5"},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@2.0.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-SFHeUsxY11LBDcook6xGDQ0gJRpQuseTSmVKeMFXS7ZC8w+qd5OuzUw3iDnFqtBPgD1ESQyQ3bRHzXw1SyIU1g==","shasum":"0a6332344b57930cab835558de0cfe702118d477","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-2.0.0.tgz","fileCount":51,"unpackedSize":101992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkPi2CRA9TVsSAnZWagAAeG0P/jaWd/Xr59bTSW+3VSIf\nwMxBIGS2ueAWTh3wUkbMdprX3HTX1gvce9ezZpTba3SiEdvrGbvrHFQrWztO\n6jGn1yT9uO+72oUAYVvoqqq+KtsgIFwaxGrLPOE24JlTSBpH7lQSdEkU7Zr9\ncmu62PJJopVeSluXhXuWl64Mxky9K9A2hRkSvodlBQoRH4G0lBDiIxoVQseK\nUa/BAWoD9HPJQHWyYQnjp+RsibIa1KuDQt6es3cGpbd7IzTWIn61unB2GK38\nPycqvZ7lTFie2JKScjufc7HGby+4U7O1unM0n4JnLbuK665jBChpkK2HB5Us\nEy5Elw1wrvtdDljZKJxCID75+7hpXuP+xmA/zeHdhNSyVWa8dLKiQbIdUAHF\nteAQOwtJBe3GGHfpAFgmUyLyWPQG2GAFLJVB6H3s8Xkz+404YYshfxho2rX4\nzCoapNOIxgao49hFTf+0PIyLJBAwDIIDZTDansJ7x2N0rmrejuOMswvouL6t\nWNHTxouBfmCQlB/vo7RMt9MkwMQtMq+JOquD+DD/Iw7e46VggAhVE5Zs8X2o\n00jo0Wdjh+FvO9uGPsWblqUBE2GUowebEAUr6QYngMIQGPuDITdXl9vUlLhV\nWIkJlFJJ2LZR3JRA/URluLBgPu96MrP5TKFS/PBz1wbm9PN4XiAirB7kaYVl\nfrXn\r\n=Q6h5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGqx8xPUhWyZFUmnQx1PNfBHTPqMYFN8DhHO9AplbXhcAiEAun76MVIjDHuFSpRQnLQUdG53nB01A6xj6pZQ6roe9g0="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_2.0.0_1536227509891_0.46863777614959345"},"_hasShrinkwrap":false},"2.0.1":{"name":"@userdive/agent","description":"webpage tracking agent","version":"2.0.1","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^1.3.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.2.0","@types/uuid":"3.4.4"},"engine":{"node":"> 5"},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@2.0.1","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-+85ufvGHxJgnQ9j13yk82PoUFldok+wHGCf8TrvOghOPK6Y4ggy3XQikV6AWZ+QnVqp39vGV4Zb7L3IgjGIYqQ==","shasum":"1cfa52d5af729e8af79eebefb17c51da1f6e0642","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-2.0.1.tgz","fileCount":51,"unpackedSize":101992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm0gTCRA9TVsSAnZWagAAOecQAISYHwvY3kkSYnEGBrUg\nHO89rvOmPFU0z674TNF8cDE4DIyMcsbNO1pM06jInsLvFV3IeGzjv48mGcrR\nrFYL/RaI/vtgzyD6jW6y0DEbTObRQHfLeL/Nv3PQzP/KY6+Qti8Onrr6r56l\nfCl5B3VEFp5Au5g3xabbRhfz3RRB7L8sgyJ2rHpDLVsC0P3ZpUABpxoDdL56\nc1zloYuKtVtvZjsuqorIkS6BSxm42mSUjd+//N8+qF7LuXk22CmDqGFDpnec\n89dJKh8FlALo/YoiN6VzQQSJ6Gu/3mf48mviQsw9EPwvXqDhpNsQwq/IcPaw\n/eBfp/aP304lhfvvjl+jQyQQVZoKzjTGI9CGQ++iX34txq2HSsgfTB5YhA1I\n7nPB1kX1tTtZkr0mJxtLyFEI89RVt2SuLAU4WT4klxRt6Wqg0VYCCFSFBJ+e\n1bczqy9TrnB6WN/WHX1jgpYhq2W5c7aS4Ios11heNRrLPSZ4H0FQ7nuJG8V3\nWLhUDeIXEcmFOYf9vgeQR+LiqJQUzl/k0dD5W9lZbB+INbndLX4zQ+XKbx/J\nT7tV35kKyN4XjTwF/IWN/dtRQCrJSWMfe1QecM4pzqg7kL1AROi+sP+CE/nM\nSd34Ai89GAdVVCebSHF32RLtjWpYM+27Cp+iLX6IlygRBtD8wgCo4CSvA3B8\nrqD4\r\n=Ix2C\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD/sZ616Mq65S9PgMDLXAIRBa6u+2H0lNn8ZMtgWb5YiAIgV78M/8YqeQMN43OUOqR8KzJ2DhAlHenldMc3etx/8Qg="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_2.0.1_1536903187077_0.5551746972481677"},"_hasShrinkwrap":false},"2.0.2":{"name":"@userdive/agent","description":"webpage tracking agent","version":"2.0.2","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^2.0.2","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.2.0","@types/uuid":"3.4.4"},"engine":{"node":"> 5"},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@2.0.2","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-EgTCaVfbg0IRd0QaREUWgGIAjbu2S/elz0iwGrzRJjMNdEq87sULkNHl0CVY7e+yXz+ouBwkXL7331YvVpgXEg==","shasum":"8a4f1c2d9d4bb3ede215d387596ff34c17dd36f1","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-2.0.2.tgz","fileCount":51,"unpackedSize":101992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm3tACRA9TVsSAnZWagAAyg4P/RYZarHOsdN3gXcZ+QRE\npPw2QGSevrWni0LB3mC4HhGzg6wTGo3L4gTbuXBTvtUAGaXNROPaKmZA/EEZ\ngLgJ17H4bp6HKre85ycl+xiSOcq8kJmnGvsvb6ONHG7gi42QAyacRvH8Jxkk\nnSsWZXYaTzoVQXjKgzPLHUdoJ/21Sd73WZvN9eb2UteQ8Vu9opDKtwn5ullU\nQaOG3qGn78pHPEcqcRWgPbQl1E0yNIU3a9QfHyW7ccpZCzj0370HvU48TJfQ\nG5aryum106jCQ/CAfd2rRi0vCUdJE0h6ZFJKUUIWP1HBwPYp+ONlVMWueUhi\nvV4a0hbp9xdBhDMIwjekA1MbAJDsceDOzYmx7FhevDa7vnPp//4LXKZf75MY\nBeWRUkgfmGdnNG7DBdxJxxRdzdjC9Hj5fPO4lv2dqUQEJ+XynFdMGBc09bD3\nc15Nx7QHKdfIj+vu9MdiLoMwW8x6wy+AhaodBPYoFwUzxoqOWYlC/ffbkv8Y\nSfCM/IYaO/Xr4c+qCQpdclpx0XfaVL555WJgjayL5dph6C18BQvRAL2RZfyl\nDJzBHsUJVSqAu+wiBSU1kThfXhRoxZZONqmKkjtQd2udw3rwE1d4lucFfPcN\nYaJKqpsC+PjfJZPoGr5lLBShMwgZ6XegYa0zjiUohbTDr39G8sIUqroldFsb\nF2Dq\r\n=6+Qe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHBwl6TDADBGotSfsWorCtRxxJG6pRVZ5va6YjNzqyo1AiA64Zn/2TfYen/yzKUbv2hpwl7xa/n00u8M7CsKw0R/Qw=="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_2.0.2_1536916287999_0.5852304240790309"},"_hasShrinkwrap":false},"2.1.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"2.1.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^2.1.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.2.0","@types/uuid":"3.4.4"},"engine":{"node":"> 5"},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@2.1.0","_npmVersion":"6.4.1","_nodeVersion":"10.13.0","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-dwtrfTVUle2HwF9bpAmUw4gnU4Uto+mFaoism9cq62Ygfm643Hidq/OqB49ssDjOEXK3YvFZFny4TLtcWYL4AQ==","shasum":"340de9e9a5b999c69fe301dc7053715297b5ddd9","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-2.1.0.tgz","fileCount":51,"unpackedSize":102460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6mjICRA9TVsSAnZWagAAhg8P/22nQeh0+xXOxUkOfvO3\n9c7ZvQ10YUWeEm5/1azYJuWbt5e++1tVevV+5965LvQ4W8xK0Ab5+gmGipzu\nsEMYdjeKaacenm7mfpQk9kPQAbaYsFU2W1AoFNEDeFC/6Z3EYUlbBOH3DDaa\nMWyFixLEJfZIkvLsiMqLSFmRNyBM5WCzG0D/QmHtrh5yjK8ggq4BFnexXDVj\ne8tqaCbsZ27gXyHOFyxatoXJZAyS9n97JZUOiH5WDPQVJzmVhDCxwM0U2eF6\nrWsa0F6EA+2l+u46r4KmWfXbE4sxz8FcjHFObzT1LN/zeqoNwIUr4fvtRGk8\ndVjT8aifIZ9f1UivjlIfQg0Dzy3+hyLfxO/7m3hjwXwfRfdKL2sOHYpnNJmd\n/CEDPe5q13/nieMbkC/w8/roMflB+HCnWef5qehGKrVVB4EsW4RNdQ0XJr3L\npx7jDLZJltqEPDH9mp+5tzglLgIwfnZ0CYfB2bxfGdv1Fdc2p18xoclCI29E\naw208KlGTvNqrE+4RwmtNtce6H4yHnlkE9l0TkVaBKhkeSyxTzHV5yCPTI/y\nexK/uLQwAWTGyNYCuSyeMapaTAvaTJrn7ZY359vcZOz/nqTo6zWSKmC7LnVJ\nbDI9NOsVJxZ/FRbyjxa0h6FYcGLMQybBdEQe5vXpp8iSVTl05qzdFcQyYJoW\nPf97\r\n=Z8Ww\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaC+x0meuX/CMIobyLDhl/39yTUmTYnKvSCPXMk8D04gIhAK9nW/LeuFEE9BNsRKqopO7qUO+AskrvrEX7hZ69iMz2"}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_2.1.0_1542088904081_0.7531523486527831"},"_hasShrinkwrap":false},"3.0.0":{"name":"@userdive/agent","description":"webpage tracking agent","version":"3.0.0","author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"dependencies":{"auto-cookie":"^2.0.0","js-cookie":"^2.2.0","object-assign":"^4.1.1","raven-js":"^3.23.1","ui-event-observer":"^2.0.0","userdive":"^3.0.0","uuid":"^3.2.1"},"devDependencies":{"@types/js-cookie":"2.2.0","@types/uuid":"3.4.4"},"engine":{"node":"> 5"},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"license":"GPL-3.0","main":"lib/agent.js","publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"scripts":{"build":"tsc","clean":"rimraf coverage lib docs","prepublish":"npm run build"},"types":"lib/agent.d.ts","_id":"@userdive/agent@3.0.0","_npmVersion":"6.4.1","_nodeVersion":"10.15.1","_npmUser":{"name":"userdive","email":"develop@uncovertruth.co.jp"},"dist":{"integrity":"sha512-X3HfctDHfmoNxbri5O3NbXrjWmPIerft3xs3PwLHzk0EZd7kzTWIQeuwEOtqAU9xkj5z6C0I5Y7Sj5g1C7adaQ==","shasum":"084053dc950911fb7c08c010a5ee9b0018d7cff7","tarball":"https://registry.npmjs.org/@userdive/agent/-/agent-3.0.0.tgz","fileCount":51,"unpackedSize":103624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUr4JCRA9TVsSAnZWagAAjf0P/3+fW3egwnrPqaWoYABG\nImek1O+kHoTsuW8ormsXITzE3VmAIA1ox5vNdq5FlFZX8GXGZSDtNvlTq9TT\nsWSnuSaZgJLyRL65ogE2T2DumqmQ+NUHVWAif5bPJECjZPzYuyOEDp6ja+AV\ni16GFmZqmOZ5rO5PxwbLrjnfIiR6ciccUfoAzlk9aNwibOhKjZ+3sPYwdW+o\nbTs7RSBzhvqVUy+pHlpsbU4A+Yh++SCsOKKNZnEvoiO4cPwwiDc9kODF70Eg\nNNPslJXzmHFzx4pnEIPhfVlnaqZJiA5p78BzoHQ+L1tQ1ZP8l4+R8pQ6SM9s\nTYXVJym4wvRA7R6YLBh24BlmhPUo/7LjIu7znx0Shf+JsD+D48Nmpcg5D9ZM\nNmWMqFtlEf7KCS48dIwUB/UvpwoCfJw1lhHg2mdRs693IQJFh9LWacV/631/\n5tCo9/1ILgyIB7PXR073FdL7RXiJboosBN82+19n1tAyqswjz+JokZLEHaJT\ndfVIQFrAtsbCaF18CP/TzC/zRhk//m8Ze1NJEUR5573su/FO8OaapUOdQKue\naXiaOo8U0ad6fQaQxWJ3bAL7gU1PNYEyPiF97TuA2weeSaDCkyTTjocQaiT8\nhYxLuJiTLkvZI/xsJcsRLlygHayU2mvsGszbpZnGkFKiLRPE2NQm6Jcs2NVc\nYGQ2\r\n=JdNc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCE14TvSX+FQ2Q+HBUxL+hy9SCKqW3IAG36I5LgS2EeOAIge/3sV4dV02DG5DLFwSdl73NX4dmFxdA8xR2Jxbu4GwI="}]},"maintainers":[{"name":"userdive","email":"develop@uncovertruth.jp"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/agent_3.0.0_1548926473037_0.08015530644381252"},"_hasShrinkwrap":false}},"homepage":"https://github.com/userdive/agent.js#readme","keywords":["userdive"],"repository":{"type":"git","url":"git+ssh://git@github.com/userdive/agent.js.git"},"author":{"name":"UNCOVER TRUTH Inc."},"bugs":{"url":"https://github.com/userdive/agent.js/issues"},"license":"GPL-3.0","readmeFilename":"README.md"}