{"maintainers":[{"email":"devops+npm@angular.io","name":"anonymous"}],"keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"dist-tags":{"latest":"2.2.0","beta":"0.1.0-beta.1"},"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"description":"WebDriverJS adapter for Jasmine2.","readme":"jasminewd2 [![Build Status](https://travis-ci.org/angular/jasminewd.svg?branch=jasminewd2)](https://travis-ci.org/angular/jasminewd)\n=========\n\nAdapter for Jasmine-to-WebDriverJS. Used by [Protractor](http://www.github.com/angular/protractor).\n\n**Important:** There are two active branches of jasminewd.\n\n - [jasminewd1](https://github.com/angular/jasminewd/tree/jasminewd1) is an adapter for Jasmine 1.3, and uses the package minijasminenode. It is published to npm as `jasminewd`.\n - [jasminewd2](https://github.com/angular/jasminewd/tree/jasminewd2) is an adapter for Jasmine 2.x, and uses the package jasmine. It is published to npm as `jasminewd2`.\n\nFeatures\n--------\n\n - Automatically makes tests asynchronously wait until the WebDriverJS control flow is empty.\n\n - If a `done` function is passed to the test, waits for both the control flow and until done is called.\n\n - If a test returns a promise, waits for both the control flow and the promise to resolve.\n\n - Enhances `expect` so that it automatically unwraps promises before performing the assertion.\n\nInstallation\n------------\n```\nnpm install jasminewd2\n```\n\nUsage\n-----\n\nIn your setup:\n\n```js\nvar JasmineRunner = require('jasmine');\nvar jrunner = new JasmineRunner();\nvar webdriver = require('selenium-webdriver');\n\nglobal.driver = new webdriver.Builder().\n    usingServer('http://localhost:4444/wd/hub').\n    withCapabilities({browserName: 'chrome'}).\n    build();\n\nrequire('jasminewd2').init(driver.controlFlow(), webdriver);\n\njrunner.projectBaseDir = '';\njrunner.execute(['**/*_spec.js']);\n```\n\nIn your tests:\n\n```js\ndescribe('tests with webdriver', function() {\n  it('will wait until webdriver is done', function() {\n    // This will be an asynchronous test. It will finish once webdriver has\n    // loaded the page, found the element, and gotten its text.\n    driver.get('http://www.example.com');\n\n    var myElement = driver.findElement(webdriver.By.id('hello'));\n\n    // Here, expect understands that myElement.getText() is a promise,\n    // and resolves it before asserting.\n    expect(myElement.getText()).toEqual('hello world');\n  });\n})\n```\n\nTypeScript\n----------\n\nFor the typings related to the changes in the global jasmine variables (e.g.\nallowing `it()` blocks to return a promise), we publish the package\n`@types/jasminewd2`.  If you are writing tests using jasminewd (including\nProtractor tests), be sure to include `@types/jasminewd2` in your\n`devDependencies`, as these global type modifications are ***not*** bundled with\nthe `jasminewd2` npm module.\n\njasminewd also exports one function directly: `init`.  Unfortunately, we do not\npublish typings for this function.  If you call this function directly (e.g. you\nare a Protractor dev), you should simply do:\n\n```ts\nrequire('jasminewd2').init(controlFlow, webdriver);\n```\n\n`async` functions / `await`\n---------------------------\n\n`async` functions and the `await` keyword are likely coming in ES2017 (ES8), and\navailable via several compilers.  At the moment, they often break the WebDriver\ncontrol flow.\n([GitHub issue](https://github.com/SeleniumHQ/selenium/issues/3037)).  You can\nstill use them, but if you do then you will have to use `await`/Promises for\nalmost all your synchronization.  See `spec/asyncAwaitAdapterSpec.ts` and\n`spec/asyncAwaitErrorSpec.ts` for examples.\n","repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"bugs":{"url":"https://github.com/angular/jasminewd/issues"},"license":"MIT","versions":{"0.0.1":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.1.1","selenium-webdriver":"2.43.4"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.1","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.1","dist":{"shasum":"c6a312ef22e3919045b356d6bbcefbf126bd2eed","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.1.tgz","integrity":"sha512-vlm+peG3qtgoKKhhRALXxB7zGJrO/RnyBI16t05pYWLQnqkaclXJDgV5+Wf2zBL8FrAwEUXWdZEnpo8pFOXbbw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB16Fa2A7CuL7CzQRnRWbZFs1jpJhRB3udz5HKkctrcfAiAGxHOHndNjdynMT7y9MshoS5Y9GbjkyF1OebrEofRrqA=="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"duan.hank@gmail.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"}],"directories":{}},"0.0.2":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.1.1","selenium-webdriver":"2.43.4"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.2","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.2","dist":{"shasum":"5fb5d1d96bf0834c8db054da855e5beb3b23bfaa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.2.tgz","integrity":"sha512-RgbZpfQDyvc8qAMBDRmVL5eAJOI+uEWMLU5MSltl0hmSMWDs2T7AKudiMSixtVvokc/p4XTudmjXrFsBnudJnA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgAFz694wFUwzsDc8WJJptekaNOELZC7hmX/bCm17PMgIgNl11+/AD2pxt6LiiqoCe3TR9acaHglhLDlCMwU50K04="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"anonymous","email":"duan.hank@gmail.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"}],"directories":{}},"0.0.3":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.1.1","selenium-webdriver":"2.45.1"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.3","gitHead":"759dc736a2ee10917fa3f7d6906566686eb91158","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.3","_shasum":"190456d58bc6e95c0adf257d9b345b94b1710006","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"dist":{"shasum":"190456d58bc6e95c0adf257d9b345b94b1710006","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.3.tgz","integrity":"sha512-kY3wq/QBqUZ4k00e1HFmTopIdynh1UA6UqA1KpmSpCsZCvMMk2AJoujCYpCrLaH5U6l0CkzJQOQC++Od6Kf4nw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAbeGu9b/OGksvMAbXKpLxKRHZDz79Y//uaFDWw/IlCwIhAJ3Q3+2SlbGw/Lqm1UR7IszXLAKnxBmY/nd0QONgK4TZ"}]},"directories":{}},"0.0.4":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.1.1","selenium-webdriver":"2.45.1"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.4","gitHead":"e758e2f24e8635d972abe9d0809329f84020bea8","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.4","_shasum":"33dba0b1fd48139301d7a8d7e6ed1cc7ec91e8f1","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"dist":{"shasum":"33dba0b1fd48139301d7a8d7e6ed1cc7ec91e8f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.4.tgz","integrity":"sha512-kMkOLH5w8ltTIDDFD8u+tKO0H6yUxQ6M2bpt/Ja55oD+uwFzPkz2V509fjkhZ1tUC2wpSp4s00zEpz0z3vvsag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGgoFejCc53TCl2kKd46kYJMwR6+LxreZXeIupQC6FiqAiEA0Nq7CC4R4brFw2crpTbNhpoLLjgE9N4Xsvn0wFwHZr0="}]},"directories":{}},"0.0.5":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.3.1","selenium-webdriver":"2.45.1"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.5","gitHead":"521939b83e8d96ea4cb5d639d6c508e031fcd20c","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.5","_shasum":"528609a124dfc688c1e3f434a638e047066cd63e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"dist":{"shasum":"528609a124dfc688c1e3f434a638e047066cd63e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.5.tgz","integrity":"sha512-ZBEr/OyKjolSEzoASnC6qGWwajugxj693rz7uXkEOSx93Bm8zU3RLbgAgZhwmkrXyjoKv1XpTbhD7w+qs+F/VQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDjpzcmVFegI/SMBKdR6etDvu+KhH5BV2QbWcuE4cg5IgIhAOwjdreL6JhcZ0NOjmSofjTa/E8Xvh/kTPTx3Q58jFdP"}]},"directories":{}},"0.0.6":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.3.2","selenium-webdriver":"2.47.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.6","gitHead":"764b4329aa3cbcafdbcab6799105cabb07808bd5","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.6","_shasum":"259157f06d2d149fbecb96302c80aa322a377222","_from":".","_npmVersion":"3.3.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"dist":{"shasum":"259157f06d2d149fbecb96302c80aa322a377222","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.6.tgz","integrity":"sha512-pyTCbvWYurBgGZnKd32bAuSAxyl1EMzDAq32f29GhOZQu7SRFcaGfbYCusu49PWJy/gqfbZcJm/TjmRPlX81EA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCx+T+KsZKA1aAd76bkxBfTTApRu875fHazQ+7qvHMRegIhAL1ndJidNQupDXlk1kIgSTcBXdC4AHq/3o1Su+Eu3vGG"}]},"directories":{}},"0.0.7":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.3.2","selenium-webdriver":"2.47.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.7","gitHead":"4717c0b496a5191a97ae54fafb2c0c2bd2d00a15","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.7","_shasum":"8523bbccca1c736ac46f29df741e9de5bffcd5f1","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"8523bbccca1c736ac46f29df741e9de5bffcd5f1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.7.tgz","integrity":"sha512-2CK/zKO6kp7PRnwxuBm8N5TM+0szKAxbAo1NvwnTS8ymosIVZeENtigm5yBduEbOqRrvEIV0XR3DrVx1lcjZvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSlmx3HiNbgZYLbwPWsefIvXEh1OYk6n1BRkJdqGpLNQIhAJ1m0nkht6fIIfeGTM0Yqdk8ryhtuQiNvdtn1KIi+0GG"}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/jasminewd2-0.0.7.tgz_1454969956834_0.19179105991497636"},"directories":{}},"0.0.8":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.4.1","selenium-webdriver":"2.48.2"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.8","gitHead":"6bb173bd5ffe4feb082d8c36acc8be737d125f22","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.8","_shasum":"0d36555db18d69de46396f9f1fdcba9fe090b2f6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"0d36555db18d69de46396f9f1fdcba9fe090b2f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.8.tgz","integrity":"sha512-oJSdVhtnp3jTw+sVdG9pTum2R5c5mgs2d+O4rz0c+SpDS66sTiMC9kV8FC5JfFngA8Iwtzfgp+1kCFpLOVCumw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBxLNhySGcoSbBMIprls7trnol8lVGmMv5GBFFrQAwQBAiAAsM/rkFN4c5Yq/K6VW0tgGX1JPFyF/A3WUSpYeVAHGw=="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/jasminewd2-0.0.8.tgz_1455003726165_0.4423393679317087"},"directories":{}},"0.0.9":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jshint":"2.5.0","jasmine":"2.4.1","selenium-webdriver":"2.52.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec","test":"scripts/test.sh"},"license":"MIT","version":"0.0.9","gitHead":"b0577ddd7ea2538ab3ac10022d29bbc117c84e18","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.9","_shasum":"d6be40841d440dbe1ceee5a078de62683b0e56a7","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.5.0","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"d6be40841d440dbe1ceee5a078de62683b0e56a7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.9.tgz","integrity":"sha512-APUA5Mki4lIepmqxwlykNK3rrT7O6tqsoNaVJGA4TMbjYlScKpAfP7qZSabigiq5bBeQ74FVuZ48CaipscaGcg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAbXcIxJv6Ikj+0f4AVIKp1dSEKkTIDmHYpfPLXZkaZwIhAKMIdaTLJp6/NSJmlqEa8WLe7FKU0k0IpBrLXmaGixic"}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/jasminewd2-0.0.9.tgz_1461554339385_0.21687193401157856"},"directories":{}},"0.0.10":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jasmine":"2.4.1","jshint":"2.5.0","selenium-webdriver":"2.53.3","typescript":"^2.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"pretest":"jshint index.js spec --exclude spec/asyncAwaitSpec.js; tsc -t ES2015 spec/asyncAwaitSpec.ts","test":"scripts/test.sh"},"license":"MIT","version":"0.0.10","gitHead":"4408ae4b77817520c7060b95cad6bb555ab20e32","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.0.10","_shasum":"94f48ae2bc946cad643035467b4bb7ea9c1075ef","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"94f48ae2bc946cad643035467b4bb7ea9c1075ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.0.10.tgz","integrity":"sha512-Zoq8XCcQ5qu3bxS7lHLj4LtSz4FTGYEXvwB/aKMg7b/42bIfw3F2EjBhpeDXANb4M4QwGPR2iHUkvJNlurgHvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCIG4e5C/iJy98T4zlV24ltv706ymD4bJY11YHDUL0idAIgK5iprQqnfWdEZBYbn12XlsktfQNbQ8yxk9t0gnh21zI="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/jasminewd2-0.0.10.tgz_1473207679210_0.14968514302745461"},"directories":{}},"0.1.0-beta.0":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jasmine":"2.4.1","jshint":"2.5.0","selenium-webdriver":"^3.0.0-beta-3","typescript":"^2.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tsc":"tsc -t ES2015 spec/asyncAwaitSpec.ts","pretest":"npm run jshint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","version":"0.1.0-beta.0","gitHead":"10f76537da61615c1ac3c5655528a60f6c8a28ac","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.1.0-beta.0","_shasum":"cd0d25c6b3a88e77860a2f734e3a8152072eb1e5","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"cd0d25c6b3a88e77860a2f734e3a8152072eb1e5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.1.0-beta.0.tgz","integrity":"sha512-7qnms/76er2HkcvQhd6ScOX9puI+j6hxr+R4ihEQ0ipWu2e/A4iD38RGxd0W+SJEYsuYgj4rXOzIiCCfE0J9wg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVm/u8s07Mq2xwlNzeuEcPl4GF+VHzrtxp48bjaHq40gIgPxYehIcPm8aF2aOtvxYKkxjtEcA0NvTlf/MP33yFH/M="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/jasminewd2-0.1.0-beta.0.tgz_1477618715021_0.9911332791671157"},"directories":{}},"0.1.0-beta.1":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"jasmine":"2.4.1","jshint":"2.5.0","selenium-webdriver":"^3.0.0","typescript":"^2.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tsc":"tsc -t ES2015 spec/asyncAwaitSpec.ts","pretest":"npm run jshint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.0"},"version":"0.1.0-beta.1","gitHead":"4b0b308e876202d5e4c9c39dfb6bf0647ada0e03","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.1.0-beta.1","_shasum":"9b3f1978882c9384c24d27aa0cb29683c7fba2de","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.6.0","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"9b3f1978882c9384c24d27aa0cb29683c7fba2de","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.1.0-beta.1.tgz","integrity":"sha512-xcXSJFSx4TU0AFHzULg4/ArSf8iQDsuhoQPcMurQ4z9ZIDw/7IvNQHj/nQGIkWx3W92TgquLFedPjF9ib3HB0g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRyJgatUsG7OTll6lgj1rFy/r80nvcYerkAwlaqiWI6AIhAIA2KkMqnvQARGZu10q8VvNj4nrvV9Wz+CWxCVl6YieQ"}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/jasminewd2-0.1.0-beta.1.tgz_1478565184076_0.4104348011314869"},"directories":{}},"0.1.0":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"dependencies":{"jasmine":"2.4.1","selenium-webdriver":"3.0.1"},"devDependencies":{"jshint":"^2.9.4","typescript":"^2.0.10"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tsc":"tsc -t ES2015 spec/asyncAwaitSpec.ts","pretest":"npm run jshint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.x"},"version":"0.1.0","gitHead":"14dbf62cadf341e8a4de2dc3d92f844ece1fc3ce","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.1.0","_shasum":"8d22090ecc0238e17c225c035a1d9fa1906cf9e8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"8d22090ecc0238e17c225c035a1d9fa1906cf9e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.1.0.tgz","integrity":"sha512-P3M3NdwduK3iS1nmz+e2Yegcdb2156cVl6qCk2K/lXqbYzLFEWJzOXqzgxjeHyOveQ1tTx8f/hqq2a9ItYztnQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCrcsq+lKdwzrOTgkTLZcQlf7X0phwtwzX5aCaaBXvNuwIgfbfWlK3zwZxih4bK97TqEDPu9rroiz0vPDy3Ay8qWas="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/jasminewd2-0.1.0.tgz_1483735077548_0.09285679017193615"},"directories":{}},"0.1.1":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"dependencies":{"jasmine":"2.4.1","selenium-webdriver":"3.0.1"},"devDependencies":{"jshint":"^2.9.4","typescript":"^2.0.10"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tsc":"tsc -t ES2015 spec/asyncAwaitSpec.ts","pretest":"npm run jshint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.x"},"version":"0.1.1","gitHead":"f0d0f06bdff3a5786e4dd23d4b7e6e3ffac9173e","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@0.1.1","_shasum":"5adff080d576c0a4b8637ccfb78954d27ecb7cdc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"5adff080d576c0a4b8637ccfb78954d27ecb7cdc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-0.1.1.tgz","integrity":"sha512-/jd1Q9I9R7WhqpZ5XAfL2YMCXsFiYaOUC4Urwlm6vF0xYlETJjtdmZGpdS8g6LDRKbmabbUlkFmB/ZhnH+yKUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEO6/n/FI8miv7ofhe3zsxuEzVektzymja+rpUc/w6r9AiEAjtcJu3QQeT+7GdTaX6X63CTKm2MF7XfrBdEkcST3ZIU="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/jasminewd2-0.1.1.tgz_1484076413829_0.9234701462555677"},"directories":{}},"2.0.0":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"@types/jasmine":"^2.5.40","@types/node":"^6.0.56","@types/selenium-webdriver":"^2.53.38","jasmine":"2.4.1","jshint":"^2.9.4","selenium-webdriver":"3.0.1","tslint":"^4.2.0","tslint-eslint-rules":"^3.2.3","typescript":"^2.0.10","vrsource-tslint-rules":"^4.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tslint":"tslint spec/*.ts","lint":"npm run jshint && npm run tslint","tsc":"tsc; cp spec/*.js built_spec","pretest":"npm run lint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.x"},"version":"2.0.0","gitHead":"ff79938e5f3d1a2c0ffde989b2221a4054066b4a","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@2.0.0","_shasum":"10aacd2c588c1ceb6a0b849f1a7f3f959f777c91","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"10aacd2c588c1ceb6a0b849f1a7f3f959f777c91","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-2.0.0.tgz","integrity":"sha512-LiPq9BszFNOnDV1SNtjIt2QHCd4ZaLXG+BrEAtS3i06GskwQcbS81Mf/w77NQKhCcjjuSuXxL0HAPrQ3jYuMuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDAiumOKkCuZbr+4X1ls9vaGe75M9THhq/LqMXNGp4AAAiEA5OwufIgJbMFmMdAjJxki73UydLEy9dqDDRw3Pqs8Vxw="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/jasminewd2-2.0.0.tgz_1484965294807_0.43819506419822574"},"directories":{}},"2.1.0":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"@types/jasmine":"^2.5.40","@types/node":"^6.0.56","@types/selenium-webdriver":"^2.53.38","jasmine":"2.4.1","jshint":"^2.9.4","selenium-webdriver":"3.0.1","tslint":"^4.2.0","tslint-eslint-rules":"^3.2.3","typescript":"^2.0.10","vrsource-tslint-rules":"^4.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tslint":"tslint spec/*.ts","lint":"npm run jshint && npm run tslint","tsc":"tsc; cp spec/*.js built_spec","pretest":"npm run lint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.x"},"version":"2.1.0","gitHead":"3280865bc7602143c3e576e6262c5e2c3b0de4b9","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@2.1.0","_shasum":"da595275d1ae631de736ac0a7c7d85c9f73ef652","_from":".","_npmVersion":"3.5.3","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"da595275d1ae631de736ac0a7c7d85c9f73ef652","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-2.1.0.tgz","integrity":"sha512-F9A9vCYEhkWbgHrsOKHchYWwTKj3NgxQrScc5ZB3GR5QCJJ3U8Ozi9wdf28rVeRTYUBF+qpZJgrlKfsOyCLMrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBS1A0yKXvZQZmbRZQVBdPehUW4oYqE5PwSqfTpP1XbyAiBwUDMa2P04KpF/hxg3w0O3sthc53yPEE1E6p+Wzv89Pg=="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/jasminewd2-2.1.0.tgz_1494352866972_0.7912415973842144"},"directories":{}},"2.2.0":{"name":"jasminewd2","description":"WebDriverJS adapter for Jasmine2.","homepage":"https://github.com/angular/jasminewd","keywords":["test","testing","webdriver","webdriverjs","selenium","jasmine"],"author":{"name":"Julie Ralph","email":"ju.ralph@gmail.com"},"devDependencies":{"@types/jasmine":"^2.5.40","@types/node":"^6.0.56","@types/selenium-webdriver":"^2.53.38","jasmine":"2.4.1","jshint":"^2.9.4","selenium-webdriver":"3.5.0","tslint":"^4.2.0","tslint-eslint-rules":"^3.2.3","typescript":"^2.0.10","vrsource-tslint-rules":"^4.0.0"},"repository":{"type":"git","url":"git://github.com/angular/jasminewd.git"},"main":"index.js","scripts":{"jshint":"jshint index.js spec","tslint":"tslint spec/*.ts","lint":"npm run jshint && npm run tslint","tsc":"tsc; cp spec/*.js built_spec","pretest":"npm run lint && npm run tsc","test":"scripts/test.sh"},"license":"MIT","engines":{"node":">= 6.9.x"},"version":"2.2.0","gitHead":"236b0d211ef7b8510629dcbc7d2a18afaabd2f10","bugs":{"url":"https://github.com/angular/jasminewd/issues"},"_id":"jasminewd2@2.2.0","_shasum":"e37cf0b17f199cce23bea71b2039395246b4ec4e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"anonymous","email":"angular-core+npm@google.com"},"dist":{"shasum":"e37cf0b17f199cce23bea71b2039395246b4ec4e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/jasminewd2/-/jasminewd2-2.2.0.tgz","integrity":"sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCA0e02ff7fawBMeTtIy2zB0atANzM/Uz1C3APWty567AIgCF1/pS/htOysLKE9BYskEfyBf0J6hMToSbZpE4BQox8="}]},"maintainers":[{"name":"anonymous","email":"duan.hank@gmail.com"},{"name":"anonymous","email":"angular-core+npm@google.com"},{"name":"anonymous","email":"pete@bacondarwin.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/jasminewd2-2.2.0.tgz_1507244698053_0.17339452565647662"},"directories":{}}},"name":"jasminewd2","time":{"modified":"2022-06-19T03:49:12.087Z","created":"2015-01-03T04:15:47.943Z","1.0.0":"2015-01-03T04:15:47.943Z","0.0.1":"2015-01-03T06:05:34.053Z","0.0.2":"2015-01-05T20:34:29.323Z","0.0.3":"2015-03-18T00:18:51.850Z","0.0.4":"2015-04-14T01:15:39.716Z","0.0.5":"2015-05-15T17:58:19.573Z","0.0.6":"2015-09-29T20:12:50.442Z","0.0.7":"2016-02-08T22:19:19.295Z","0.0.8":"2016-02-09T07:42:07.303Z","0.0.9":"2016-04-25T03:19:01.199Z","0.0.10":"2016-09-07T00:21:20.919Z","0.1.0-beta.0":"2016-10-28T01:38:38.638Z","0.1.0-beta.1":"2016-11-08T00:33:05.950Z","0.1.0":"2017-01-06T20:37:57.785Z","0.1.1":"2017-01-10T19:26:55.768Z","2.0.0":"2017-01-21T02:21:35.045Z","2.1.0":"2017-05-09T18:01:09.422Z","2.2.0":"2017-10-05T23:04:58.109Z"},"readmeFilename":"README.md","homepage":"https://github.com/angular/jasminewd"}